Skip to content

Instantly share code, notes, and snippets.

@nivv
Last active March 23, 2017 08:37
Show Gist options
  • Save nivv/5dbcc563b7ea53f3e1a1aacd97e184da to your computer and use it in GitHub Desktop.
Save nivv/5dbcc563b7ea53f3e1a1aacd97e184da to your computer and use it in GitHub Desktop.

Atom Beautify - Debugging information

The following debugging information was generated by Atom Beautify on Thu Mar 23 2017 09:36:46 GMT+0100 (CET).


Table Of Contents


Platform: darwin

Versions

Atom Version: 1.15.0

Atom Beautify Version: 0.29.17

Original file to be beautified

Original File Path: /Users/albin/projects/shin/resources/assets/js/components/pages/PageIndex.vue

Original File Grammar: Vue Component

Original File Language: Vue

Language namespace: vue

Supported Beautifiers: Vue Beautifier

Selected Beautifier: Vue Beautifier

Original File Contents

<template>
<div class="component-container">
    <div v-if="appReady">
        <div>
            <h1>Sidor</h1>
            <div class="row"
                v-if="languages.length">
                <div class="col-md-9">
                    <ui-tabs type="text"
                        raised>
                        <ui-tab v-for="lang in languages"
                            :key="lang.id"
                            :header="lang.name">
                            <ul id="menu"
                                class="nav nav-list">
                                <item class="item"
                                    :model="pages"
                                    :language="lang.id"></item>
                                    </ul>
                                    </ui-tab>
                                    </ui-tabs>
                </div>
                <div class="col-md-2">
                    <page-create :pages="pages"
                        :languages="languages"></page-create>
                </div>
        </div>
        <div class="row"
            v-if="!languages.length">
            <div class="col-md-10">
                <ul id="menu"
                    class="nav nav-list">
                    <item class="item"
                        :model="pages"></item>
                        </ul>
                        <hr>
            </div>
            <div class="col-md-3">
                <page-create :pages="pages"
                    :languages="languages"></page-create>
            </div>
    </div>
</div>

</div>
</div>

</template>

<script>
import store from '../../vuex/store'
import PageCreate from './PageCreate.vue';
import parentOption from '../partials/pageParentOptions.vue';
import item from '../partials/pageTree.vue';
import {
    UiTabs,
    UiTab,
    UiProgressCircular,
    UiButton
} from 'keen-ui';
//
export default {
    name: 'PageIndex',
    //template: require('./edit-user.html'),
    mounted: function() {
        this.fetchPages();
        store.commit('SET_LOADING_PROGRESS', 60);
    },
    computed: {
        languages() {
            return this.$store.getters.languages
        }
    },
    route: {
        // Check the users auth status before
        // allowing navigation to the route
        beforeEnter() {
            return store.state.user.authenticated
        }
    },
    data: function() {
        return {
            pages: [],
            errors: [],
            hasStatus: false,
            statusCode: '',
            isSaving: false,
            appReady: false,
            msgOnError: 'Serverfel, kunde inte spara',
            deleted: false,
            selectedParent: {
                title: 'Välj förälder'
            }
        }
    },
    components: {
        item,
        PageCreate,
        parentOption,
        UiProgressCircular,
        UiButton,
        UiTab,
        UiTabs
    },
    methods: {
        fetchPages: function() {
            // GET request
            this.$http.get('/api/v2/pages/tree').then((response) => {
                // handle success
                // set data on vm!
                this.$set(this, 'pages', response.data.tree);
                this.$set(this, 'appReady', true);
                store.commit('SET_LOADING_PROGRESS', 100);
            }, (error) => {
                // handle error
            });
        }
    }
}

</script>
error) => { // handle error }); } } }

</script>

Package Settings

The raw package settings options

{
    "general": {
        "_analyticsUserId": "0f5d15b8-e499-450d-bcc2-6d8bcc45d223",
        "analytics": true,
        "loggerLevel": "warn",
        "beautifyEntireFileOnSave": true,
        "muteUnsupportedLanguageErrors": false,
        "muteAllErrors": false
    },
    "html": {
        "beautify_on_save": true,
        "wrap_attributes_indent_size": 123131,
        "wrap_line_length": 25021321,
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_attributes": "auto",
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify"
    },
    "js": {
        "space_after_anon_function": true,
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "php": {
        "cs_fixer_path": "",
        "fixers": "",
        "level": "",
        "phpcbf_path": "",
        "standard": "",
        "disabled": false,
        "default_beautifier": "PHP-CS-Fixer",
        "beautify_on_save": false
    },
    "vue": {
        "space_after_anon_function": true,
        "wrap_attributes_indent_size": 4000,
        "wrap_line_length": 4000,
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "end_with_newline": false,
        "end_with_comma": false,
        "indent_inner_html": false,
        "indent_scripts": "normal",
        "wrap_attributes": "auto",
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "Vue Beautifier",
        "beautify_on_save": false
    },
    "apex": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "arduino": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "bash": {
        "indent_size": 2,
        "disabled": false,
        "default_beautifier": "beautysh",
        "beautify_on_save": false
    },
    "cs": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "c": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "clj": {
        "disabled": false,
        "default_beautifier": "cljfmt",
        "beautify_on_save": false
    },
    "coffeescript": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "coffee-fmt",
        "beautify_on_save": false
    },
    "cfml": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "cpp": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "crystal": {
        "disabled": false,
        "default_beautifier": "Crystal",
        "beautify_on_save": false
    },
    "css": {
        "indent_size": 4,
        "indent_char": " ",
        "selector_separator_newline": false,
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "configPath": "",
        "predefinedConfig": "csscomb",
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "csv": {
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "d": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "ejs": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 250,
        "end_with_newline": false,
        "end_with_comma": false,
        "indent_inner_html": false,
        "indent_scripts": "normal",
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "elm": {
        "disabled": false,
        "default_beautifier": "elm-format",
        "beautify_on_save": false
    },
    "erb": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "erlang": {
        "disabled": false,
        "default_beautifier": "erl_tidy",
        "beautify_on_save": false
    },
    "gherkin": {
        "indent_size": 4,
        "indent_char": " ",
        "disabled": false,
        "default_beautifier": "Gherkin formatter",
        "beautify_on_save": false
    },
    "glsl": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "clang-format",
        "beautify_on_save": false
    },
    "go": {
        "disabled": false,
        "default_beautifier": "gofmt",
        "beautify_on_save": false
    },
    "fortran": {
        "emacs_path": "",
        "emacs_script_path": "",
        "disabled": false,
        "default_beautifier": "Fortran Beautifier",
        "beautify_on_save": false
    },
    "handlebars": {
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "haskell": {
        "disabled": false,
        "default_beautifier": "stylish-haskell",
        "beautify_on_save": false
    },
    "jade": {
        "indent_size": 4,
        "indent_char": " ",
        "disabled": false,
        "default_beautifier": "Pug Beautify",
        "beautify_on_save": false
    },
    "java": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "json": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "jsx": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "latex": {
        "indent_char": " ",
        "indent_with_tabs": true,
        "indent_preamble": false,
        "always_look_for_split_braces": true,
        "always_look_for_split_brackets": false,
        "remove_trailing_whitespace": false,
        "align_columns_in_environments": [
            "tabular",
            "matrix",
            "bmatrix",
            "pmatrix"
        ],
        "disabled": false,
        "default_beautifier": "Latex Beautify",
        "beautify_on_save": false
    },
    "less": {
        "indent_size": 4,
        "indent_char": " ",
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "configPath": "",
        "predefinedConfig": "csscomb",
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "lua": {
        "disabled": false,
        "default_beautifier": "Lua beautifier",
        "beautify_on_save": false
    },
    "markdown": {
        "gfm": true,
        "yaml": true,
        "commonmark": false,
        "disabled": false,
        "default_beautifier": "Tidy Markdown",
        "beautify_on_save": false
    },
    "marko": {
        "indent_size": 4,
        "indent_char": " ",
        "syntax": "html",
        "indent_inner_html": false,
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "Marko Beautifier",
        "beautify_on_save": false
    },
    "mustache": {
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "nunjucks": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "objectivec": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "ocaml": {
        "disabled": false,
        "default_beautifier": "ocp-indent",
        "beautify_on_save": false
    },
    "pawn": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "perl": {
        "perltidy_profile": "",
        "disabled": false,
        "default_beautifier": "Perltidy",
        "beautify_on_save": false
    },
    "puppet": {
        "disabled": false,
        "default_beautifier": "puppet-lint",
        "beautify_on_save": false
    },
    "python": {
        "max_line_length": 79,
        "indent_size": 4,
        "ignore": [
            "E24"
        ],
        "sort_imports": false,
        "disabled": false,
        "default_beautifier": "autopep8",
        "beautify_on_save": false
    },
    "r": {
        "indent_size": 4,
        "disabled": false,
        "default_beautifier": "formatR",
        "beautify_on_save": false
    },
    "riot": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "ruby": {
        "indent_size": 4,
        "rubocop_path": "",
        "indent_char": " ",
        "disabled": false,
        "default_beautifier": "Rubocop",
        "beautify_on_save": false
    },
    "rust": {
        "rustfmt_path": "",
        "disabled": false,
        "default_beautifier": "rustfmt",
        "beautify_on_save": false
    },
    "sass": {
        "disabled": false,
        "default_beautifier": "SassConvert",
        "beautify_on_save": false
    },
    "scss": {
        "indent_size": 4,
        "indent_char": " ",
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "configPath": "",
        "predefinedConfig": "csscomb",
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "spacebars": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "sql": {
        "indent_size": 4,
        "keywords": "upper",
        "identifiers": "unchanged",
        "disabled": false,
        "default_beautifier": "sqlformat",
        "beautify_on_save": false
    },
    "svg": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "swig": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "tss": {
        "indent_size": 4,
        "indent_char": " ",
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "twig": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "space_in_paren": false,
        "space_after_anon_function": false,
        "break_chained_methods": false,
        "wrap_line_length": 250,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "typescript": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "TypeScript Formatter",
        "beautify_on_save": false
    },
    "ux": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "vala": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "visualforce": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "xml": {
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "xtemplate": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    }
}

Beautification options

Editor Options: Options from Atom Editor settings

{
    "_default": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_with_tabs": false
    }
}

Config Options: Options from Atom Beautify package settings

{
    "apex": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "arduino": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "bash": {
        "indent_size": 2,
        "disabled": false,
        "default_beautifier": "beautysh",
        "beautify_on_save": false
    },
    "cs": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "c": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "clj": {
        "disabled": false,
        "default_beautifier": "cljfmt",
        "beautify_on_save": false
    },
    "coffeescript": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "coffee-fmt",
        "beautify_on_save": false
    },
    "cfml": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "cpp": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "crystal": {
        "disabled": false,
        "default_beautifier": "Crystal",
        "beautify_on_save": false
    },
    "css": {
        "indent_size": 4,
        "indent_char": " ",
        "selector_separator_newline": false,
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "configPath": "",
        "predefinedConfig": "csscomb",
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "csv": {
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "d": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "ejs": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 250,
        "end_with_newline": false,
        "end_with_comma": false,
        "indent_inner_html": false,
        "indent_scripts": "normal",
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "elm": {
        "disabled": false,
        "default_beautifier": "elm-format",
        "beautify_on_save": false
    },
    "erb": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "erlang": {
        "disabled": false,
        "default_beautifier": "erl_tidy",
        "beautify_on_save": false
    },
    "gherkin": {
        "indent_size": 4,
        "indent_char": " ",
        "disabled": false,
        "default_beautifier": "Gherkin formatter",
        "beautify_on_save": false
    },
    "glsl": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "clang-format",
        "beautify_on_save": false
    },
    "go": {
        "disabled": false,
        "default_beautifier": "gofmt",
        "beautify_on_save": false
    },
    "fortran": {
        "emacs_path": "",
        "emacs_script_path": "",
        "disabled": false,
        "default_beautifier": "Fortran Beautifier",
        "beautify_on_save": false
    },
    "handlebars": {
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "haskell": {
        "disabled": false,
        "default_beautifier": "stylish-haskell",
        "beautify_on_save": false
    },
    "html": {
        "beautify_on_save": true,
        "wrap_attributes_indent_size": 123131,
        "wrap_line_length": 25021321,
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_attributes": "auto",
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify"
    },
    "jade": {
        "indent_size": 4,
        "indent_char": " ",
        "disabled": false,
        "default_beautifier": "Pug Beautify",
        "beautify_on_save": false
    },
    "java": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "js": {
        "space_after_anon_function": true,
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "json": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "jsx": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "latex": {
        "indent_char": " ",
        "indent_with_tabs": true,
        "indent_preamble": false,
        "always_look_for_split_braces": true,
        "always_look_for_split_brackets": false,
        "remove_trailing_whitespace": false,
        "align_columns_in_environments": [
            "tabular",
            "matrix",
            "bmatrix",
            "pmatrix"
        ],
        "disabled": false,
        "default_beautifier": "Latex Beautify",
        "beautify_on_save": false
    },
    "less": {
        "indent_size": 4,
        "indent_char": " ",
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "configPath": "",
        "predefinedConfig": "csscomb",
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "lua": {
        "disabled": false,
        "default_beautifier": "Lua beautifier",
        "beautify_on_save": false
    },
    "markdown": {
        "gfm": true,
        "yaml": true,
        "commonmark": false,
        "disabled": false,
        "default_beautifier": "Tidy Markdown",
        "beautify_on_save": false
    },
    "marko": {
        "indent_size": 4,
        "indent_char": " ",
        "syntax": "html",
        "indent_inner_html": false,
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "Marko Beautifier",
        "beautify_on_save": false
    },
    "mustache": {
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "JS Beautify",
        "beautify_on_save": false
    },
    "nunjucks": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "objectivec": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "ocaml": {
        "disabled": false,
        "default_beautifier": "ocp-indent",
        "beautify_on_save": false
    },
    "pawn": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "perl": {
        "perltidy_profile": "",
        "disabled": false,
        "default_beautifier": "Perltidy",
        "beautify_on_save": false
    },
    "php": {
        "cs_fixer_path": "",
        "fixers": "",
        "level": "",
        "phpcbf_path": "",
        "standard": "",
        "disabled": false,
        "default_beautifier": "PHP-CS-Fixer",
        "beautify_on_save": false
    },
    "puppet": {
        "disabled": false,
        "default_beautifier": "puppet-lint",
        "beautify_on_save": false
    },
    "python": {
        "max_line_length": 79,
        "indent_size": 4,
        "ignore": [
            "E24"
        ],
        "sort_imports": false,
        "disabled": false,
        "default_beautifier": "autopep8",
        "beautify_on_save": false
    },
    "r": {
        "indent_size": 4,
        "disabled": false,
        "default_beautifier": "formatR",
        "beautify_on_save": false
    },
    "riot": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "ruby": {
        "indent_size": 4,
        "rubocop_path": "",
        "indent_char": " ",
        "disabled": false,
        "default_beautifier": "Rubocop",
        "beautify_on_save": false
    },
    "rust": {
        "rustfmt_path": "",
        "disabled": false,
        "default_beautifier": "rustfmt",
        "beautify_on_save": false
    },
    "sass": {
        "disabled": false,
        "default_beautifier": "SassConvert",
        "beautify_on_save": false
    },
    "scss": {
        "indent_size": 4,
        "indent_char": " ",
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "configPath": "",
        "predefinedConfig": "csscomb",
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "spacebars": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "sql": {
        "indent_size": 4,
        "keywords": "upper",
        "identifiers": "unchanged",
        "disabled": false,
        "default_beautifier": "sqlformat",
        "beautify_on_save": false
    },
    "svg": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "swig": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "tss": {
        "indent_size": 4,
        "indent_char": " ",
        "newline_between_rules": true,
        "preserve_newlines": false,
        "wrap_line_length": 0,
        "indent_comments": true,
        "force_indentation": false,
        "convert_quotes": "none",
        "align_assignments": false,
        "no_lead_zero": false,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "twig": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "space_in_paren": false,
        "space_after_anon_function": false,
        "break_chained_methods": false,
        "wrap_line_length": 250,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "typescript": {
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "space_after_anon_function": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "wrap_line_length": 0,
        "end_with_newline": false,
        "end_with_comma": false,
        "disabled": false,
        "default_beautifier": "TypeScript Formatter",
        "beautify_on_save": false
    },
    "ux": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "vala": {
        "configPath": "",
        "disabled": false,
        "default_beautifier": "Uncrustify",
        "beautify_on_save": false
    },
    "vue": {
        "space_after_anon_function": true,
        "wrap_attributes_indent_size": 4000,
        "wrap_line_length": 4000,
        "indent_size": 4,
        "indent_char": " ",
        "indent_level": 0,
        "indent_with_tabs": false,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "space_in_paren": false,
        "jslint_happy": false,
        "brace_style": "collapse",
        "break_chained_methods": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "space_before_conditional": true,
        "eval_code": false,
        "unescape_strings": false,
        "end_with_newline": false,
        "end_with_comma": false,
        "indent_inner_html": false,
        "indent_scripts": "normal",
        "wrap_attributes": "auto",
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "Vue Beautifier",
        "beautify_on_save": false
    },
    "visualforce": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "xml": {
        "indent_inner_html": false,
        "indent_size": 4,
        "indent_char": " ",
        "brace_style": "collapse",
        "indent_scripts": "normal",
        "wrap_line_length": 250,
        "wrap_attributes": "auto",
        "wrap_attributes_indent_size": 4,
        "preserve_newlines": true,
        "max_preserve_newlines": 10,
        "unformatted": [
            "a",
            "abbr",
            "area",
            "audio",
            "b",
            "bdi",
            "bdo",
            "br",
            "button",
            "canvas",
            "cite",
            "code",
            "data",
            "datalist",
            "del",
            "dfn",
            "em",
            "embed",
            "i",
            "iframe",
            "img",
            "input",
            "ins",
            "kbd",
            "keygen",
            "label",
            "map",
            "mark",
            "math",
            "meter",
            "noscript",
            "object",
            "output",
            "progress",
            "q",
            "ruby",
            "s",
            "samp",
            "select",
            "small",
            "span",
            "strong",
            "sub",
            "sup",
            "svg",
            "template",
            "textarea",
            "time",
            "u",
            "var",
            "video",
            "wbr",
            "text",
            "acronym",
            "address",
            "big",
            "dt",
            "ins",
            "small",
            "strike",
            "tt",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "end_with_newline": false,
        "extra_liners": [
            "head",
            "body",
            "/html"
        ],
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    },
    "xtemplate": {
        "indent_size": 4,
        "indent_char": " ",
        "wrap_line_length": 250,
        "preserve_newlines": true,
        "disabled": false,
        "default_beautifier": "Pretty Diff",
        "beautify_on_save": false
    }
}

Home Options: Options from /Users/albin/.jsbeautifyrc

{
    "_default": {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    }
}

EditorConfig Options: Options from EditorConfig file

{
    "_default": {}
}

Project Options: Options from .jsbeautifyrc files starting from directory /Users/albin/projects/shin/resources/assets/js/components/pages and going up to root

[
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": false,
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    },
    {
        "html": {
            "allowed_file_extensions": [
                "htm",
                "html",
                "xhtml",
                "shtml",
                "xml",
                "svg",
                "blade.php",
                "vue"
            ],
            "brace_style": "collapse",
            "end_with_newline": true,
            "indent_char": " ",
            "indent_handlebars": false,
            "indent_inner_html": false,
            "indent_scripts": "separate",
            "indent_size": 4,
            "max_preserve_newlines": 1,
            "preserve_newlines": true,
            "unformatted": [
                "a",
                "img",
                "code",
                "pre",
                "sub",
                "sup",
                "em",
                "strong",
                "b",
                "i",
                "u",
                "strike",
                "big",
                "small",
                "pre",
                "h1",
                "h2",
                "h3",
                "h4",
                "h5",
                "h6"
            ],
            "wrap_line_length": 0,
            "wrap_attributes": "force",
            "wrap_attributes_indent_size": 4
        },
        "css": {
            "allowed_file_extensions": [
                "css",
                "scss",
                "sass",
                "less"
            ],
            "end_with_newline": true,
            "indent_char": " ",
            "indent_size": 4,
            "newline_between_rules": true,
            "selector_separator": " ",
            "selector_separator_newline": true
        },
        "js": {
            "allowed_file_extensions": [
                "js",
                "json",
                "jshintrc",
                "jsbeautifyrc",
                "vue"
            ],
            "brace_style": "collapse",
            "break_chained_methods": false,
            "e4x": false,
            "end_with_newline": true,
            "indent_char": " ",
            "indent_level": 0,
            "indent_size": 4,
            "indent_with_tabs": false,
            "jslint_happy": false,
            "keep_array_indentation": false,
            "keep_function_indentation": false,
            "max_preserve_newlines": 2,
            "preserve_newlines": true,
            "space_after_anon_function": false,
            "space_before_conditional": true,
            "space_in_empty_paren": false,
            "space_in_paren": false,
            "unescape_strings": false,
            "wrap_line_length": 0
        }
    }
]

Pre-Transformed Options: Combined options before transforming them given a beautifier's specifications

{
    "indent_size": 4,
    "indent_char": " ",
    "indent_with_tabs": false,
    "beautify_on_save": false,
    "wrap_attributes_indent_size": 4,
    "wrap_line_length": 0,
    "indent_inner_html": false,
    "brace_style": "collapse",
    "indent_scripts": "separate",
    "wrap_attributes": "force",
    "preserve_newlines": true,
    "max_preserve_newlines": 2,
    "unformatted": [
        "a",
        "img",
        "code",
        "pre",
        "sub",
        "sup",
        "em",
        "strong",
        "b",
        "i",
        "u",
        "strike",
        "big",
        "small",
        "pre",
        "h1",
        "h2",
        "h3",
        "h4",
        "h5",
        "h6"
    ],
    "end_with_newline": true,
    "extra_liners": [
        "head",
        "body",
        "/html"
    ],
    "disabled": false,
    "default_beautifier": "Vue Beautifier",
    "space_after_anon_function": false,
    "indent_level": 0,
    "space_in_paren": false,
    "jslint_happy": false,
    "break_chained_methods": false,
    "keep_array_indentation": false,
    "keep_function_indentation": false,
    "space_before_conditional": true,
    "eval_code": false,
    "unescape_strings": false,
    "end_with_comma": false,
    "html": {
        "allowed_file_extensions": [
            "htm",
            "html",
            "xhtml",
            "shtml",
            "xml",
            "svg",
            "blade.php",
            "vue"
        ],
        "brace_style": "collapse",
        "end_with_newline": true,
        "indent_char": " ",
        "indent_handlebars": false,
        "indent_inner_html": false,
        "indent_scripts": "separate",
        "indent_size": 4,
        "max_preserve_newlines": 1,
        "preserve_newlines": true,
        "unformatted": [
            "a",
            "img",
            "code",
            "pre",
            "sub",
            "sup",
            "em",
            "strong",
            "b",
            "i",
            "u",
            "strike",
            "big",
            "small",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "wrap_line_length": 0,
        "wrap_attributes": "force",
        "wrap_attributes_indent_size": 4
    },
    "css": {
        "allowed_file_extensions": [
            "css",
            "scss",
            "sass",
            "less"
        ],
        "end_with_newline": true,
        "indent_char": " ",
        "indent_size": 4,
        "newline_between_rules": true,
        "selector_separator": " ",
        "selector_separator_newline": true
    },
    "js": {
        "allowed_file_extensions": [
            "js",
            "json",
            "jshintrc",
            "jsbeautifyrc",
            "vue"
        ],
        "brace_style": "collapse",
        "break_chained_methods": false,
        "e4x": false,
        "end_with_newline": true,
        "indent_char": " ",
        "indent_level": 0,
        "indent_size": 4,
        "indent_with_tabs": false,
        "jslint_happy": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "max_preserve_newlines": 2,
        "preserve_newlines": true,
        "space_after_anon_function": false,
        "space_before_conditional": true,
        "space_in_empty_paren": false,
        "space_in_paren": false,
        "unescape_strings": false,
        "wrap_line_length": 0
    },
    "allowed_file_extensions": [
        "js",
        "json",
        "jshintrc",
        "jsbeautifyrc",
        "vue",
        "svg",
        "blade.php",
        "vue"
    ],
    "indent_handlebars": false,
    "e4x": false,
    "space_in_empty_paren": false
}

Final Options

Final combined and transformed options that are used

{
    "indent_size": 4,
    "indent_char": " ",
    "indent_with_tabs": false,
    "beautify_on_save": false,
    "wrap_attributes_indent_size": 4,
    "wrap_line_length": 0,
    "indent_inner_html": false,
    "brace_style": "collapse",
    "indent_scripts": "separate",
    "wrap_attributes": "force",
    "preserve_newlines": true,
    "max_preserve_newlines": 2,
    "unformatted": [
        "a",
        "img",
        "code",
        "pre",
        "sub",
        "sup",
        "em",
        "strong",
        "b",
        "i",
        "u",
        "strike",
        "big",
        "small",
        "pre",
        "h1",
        "h2",
        "h3",
        "h4",
        "h5",
        "h6"
    ],
    "end_with_newline": true,
    "extra_liners": [
        "head",
        "body",
        "/html"
    ],
    "disabled": false,
    "default_beautifier": "Vue Beautifier",
    "space_after_anon_function": false,
    "indent_level": 0,
    "space_in_paren": false,
    "jslint_happy": false,
    "break_chained_methods": false,
    "keep_array_indentation": false,
    "keep_function_indentation": false,
    "space_before_conditional": true,
    "eval_code": false,
    "unescape_strings": false,
    "end_with_comma": false,
    "html": {
        "allowed_file_extensions": [
            "htm",
            "html",
            "xhtml",
            "shtml",
            "xml",
            "svg",
            "blade.php",
            "vue"
        ],
        "brace_style": "collapse",
        "end_with_newline": true,
        "indent_char": " ",
        "indent_handlebars": false,
        "indent_inner_html": false,
        "indent_scripts": "separate",
        "indent_size": 4,
        "max_preserve_newlines": 1,
        "preserve_newlines": true,
        "unformatted": [
            "a",
            "img",
            "code",
            "pre",
            "sub",
            "sup",
            "em",
            "strong",
            "b",
            "i",
            "u",
            "strike",
            "big",
            "small",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "wrap_line_length": 0,
        "wrap_attributes": "force",
        "wrap_attributes_indent_size": 4
    },
    "css": {
        "allowed_file_extensions": [
            "css",
            "scss",
            "sass",
            "less"
        ],
        "end_with_newline": true,
        "indent_char": " ",
        "indent_size": 4,
        "newline_between_rules": true,
        "selector_separator": " ",
        "selector_separator_newline": true
    },
    "js": {
        "allowed_file_extensions": [
            "js",
            "json",
            "jshintrc",
            "jsbeautifyrc",
            "vue"
        ],
        "brace_style": "collapse",
        "break_chained_methods": false,
        "e4x": false,
        "end_with_newline": true,
        "indent_char": " ",
        "indent_level": 0,
        "indent_size": 4,
        "indent_with_tabs": false,
        "jslint_happy": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "max_preserve_newlines": 2,
        "preserve_newlines": true,
        "space_after_anon_function": false,
        "space_before_conditional": true,
        "space_in_empty_paren": false,
        "space_in_paren": false,
        "unescape_strings": false,
        "wrap_line_length": 0
    },
    "allowed_file_extensions": [
        "js",
        "json",
        "jshintrc",
        "jsbeautifyrc",
        "vue",
        "svg",
        "blade.php",
        "vue"
    ],
    "indent_handlebars": false,
    "e4x": false,
    "space_in_empty_paren": false
}

Results

Beautified File Contents:

<template>
<div class="component-container">
    <div v-if="appReady">
        <div>
            <h1>Sidor</h1>
            <div class="row"
                v-if="languages.length">
                <div class="col-md-9">
                    <ui-tabs type="text"
                        raised>
                        <ui-tab v-for="lang in languages"
                            :key="lang.id"
                            :header="lang.name">
                            <ul id="menu"
                                class="nav nav-list">
                                <item class="item"
                                    :model="pages"
                                    :language="lang.id"></item>
                                    </ul>
                                    </ui-tab>
                                    </ui-tabs>
                </div>
                <div class="col-md-2">
                    <page-create :pages="pages"
                        :languages="languages"></page-create>
                </div>
        </div>
        <div class="row"
            v-if="!languages.length">
            <div class="col-md-10">
                <ul id="menu"
                    class="nav nav-list">
                    <item class="item"
                        :model="pages"></item>
                        </ul>
                        <hr>
            </div>
            <div class="col-md-3">
                <page-create :pages="pages"
                    :languages="languages"></page-create>
            </div>
    </div>
</div>

</div>
</div>

</template>

<script>
import store from '../../vuex/store'
import PageCreate from './PageCreate.vue';
import parentOption from '../partials/pageParentOptions.vue';
import item from '../partials/pageTree.vue';
import {
    UiTabs,
    UiTab,
    UiProgressCircular,
    UiButton
} from 'keen-ui';
//
export default {
    name: 'PageIndex',
    //template: require('./edit-user.html'),
    mounted: function() {
        this.fetchPages();
        store.commit('SET_LOADING_PROGRESS', 60);
    },
    computed: {
        languages() {
            return this.$store.getters.languages
        }
    },
    route: {
        // Check the users auth status before
        // allowing navigation to the route
        beforeEnter() {
            return store.state.user.authenticated
        }
    },
    data: function() {
        return {
            pages: [],
            errors: [],
            hasStatus: false,
            statusCode: '',
            isSaving: false,
            appReady: false,
            msgOnError: 'Serverfel, kunde inte spara',
            deleted: false,
            selectedParent: {
                title: 'Välj förälder'
            }
        }
    },
    components: {
        item,
        PageCreate,
        parentOption,
        UiProgressCircular,
        UiButton,
        UiTab,
        UiTabs
    },
    methods: {
        fetchPages: function() {
            // GET request
            this.$http.get('/api/v2/pages/tree').then((response) => {
                // handle success
                // set data on vm!
                this.$set(this, 'pages', response.data.tree);
                this.$set(this, 'appReady', true);
                store.commit('SET_LOADING_PROGRESS', 100);
            }, (error) => {
                // handle error
            });
        }
    }
}

</script>
error) => { // handle error }); } } }

</script>

Original vs. Beautified Diff:

Index: /Users/albin/projects/shin/resources/assets/js/components/pages/PageIndex.vue
===================================================================
--- /Users/albin/projects/shin/resources/assets/js/components/pages/PageIndex.vue	original
+++ /Users/albin/projects/shin/resources/assets/js/components/pages/PageIndex.vue	beautified

Logs

2017-03-23T08:36:46.736Z - info: [beautifiers/index.coffee] beautify <template>
<div class="component-container">
    <div v-if="appReady">
        <div>
            <h1>Sidor</h1>
            <div class="row"
                v-if="languages.length">
                <div class="col-md-9">
                    <ui-tabs type="text"
                        raised>
                        <ui-tab v-for="lang in languages"
                            :key="lang.id"
                            :header="lang.name">
                            <ul id="menu"
                                class="nav nav-list">
                                <item class="item"
                                    :model="pages"
                                    :language="lang.id"></item>
                                    </ul>
                                    </ui-tab>
                                    </ui-tabs>
                </div>
                <div class="col-md-2">
                    <page-create :pages="pages"
                        :languages="languages"></page-create>
                </div>
        </div>
        <div class="row"
            v-if="!languages.length">
            <div class="col-md-10">
                <ul id="menu"
                    class="nav nav-list">
                    <item class="item"
                        :model="pages"></item>
                        </ul>
                        <hr>
            </div>
            <div class="col-md-3">
                <page-create :pages="pages"
                    :languages="languages"></page-create>
            </div>
    </div>
</div>

</div>
</div>

</template>

<script>
import store from '../../vuex/store'
import PageCreate from './PageCreate.vue';
import parentOption from '../partials/pageParentOptions.vue';
import item from '../partials/pageTree.vue';
import {
    UiTabs,
    UiTab,
    UiProgressCircular,
    UiButton
} from 'keen-ui';
//
export default {
    name: 'PageIndex',
    //template: require('./edit-user.html'),
    mounted: function() {
        this.fetchPages();
        store.commit('SET_LOADING_PROGRESS', 60);
    },
    computed: {
        languages() {
            return this.$store.getters.languages
        }
    },
    route: {
        // Check the users auth status before
        // allowing navigation to the route
        beforeEnter() {
            return store.state.user.authenticated
        }
    },
    data: function() {
        return {
            pages: [],
            errors: [],
            hasStatus: false,
            statusCode: '',
            isSaving: false,
            appReady: false,
            msgOnError: 'Serverfel, kunde inte spara',
            deleted: false,
            selectedParent: {
                title: 'Välj förälder'
            }
        }
    },
    components: {
        item,
        PageCreate,
        parentOption,
        UiProgressCircular,
        UiButton,
        UiTab,
        UiTabs
    },
    methods: {
        fetchPages: function() {
            // GET request
            this.$http.get('/api/v2/pages/tree').then((response) => {
                // handle success
                // set data on vm!
                this.$set(this, 'pages', response.data.tree);
                this.$set(this, 'appReady', true);
                store.commit('SET_LOADING_PROGRESS', 100);
            }, (error) => {
                // handle error
            });
        }
    }
}

</script>
error) => { // handle error }); } } }

</script>
 [ { _default: { indent_size: 4, indent_char: ' ', indent_with_tabs: false } },
  { apex: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    arduino: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    bash: 
     { indent_size: 2,
       disabled: false,
       default_beautifier: 'beautysh',
       beautify_on_save: false },
    cs: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    c: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    clj: 
     { disabled: false,
       default_beautifier: 'cljfmt',
       beautify_on_save: false },
    coffeescript: 
     { indent_size: 4,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       space_after_anon_function: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       wrap_line_length: 0,
       end_with_newline: false,
       end_with_comma: false,
       disabled: false,
       default_beautifier: 'coffee-fmt',
       beautify_on_save: false },
    cfml: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    cpp: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    crystal: 
     { disabled: false,
       default_beautifier: 'Crystal',
       beautify_on_save: false },
    css: 
     { indent_size: 4,
       indent_char: ' ',
       selector_separator_newline: false,
       newline_between_rules: true,
       preserve_newlines: false,
       wrap_line_length: 0,
       end_with_newline: false,
       indent_comments: true,
       force_indentation: false,
       convert_quotes: 'none',
       align_assignments: false,
       no_lead_zero: false,
       configPath: '',
       predefinedConfig: 'csscomb',
       disabled: false,
       default_beautifier: 'JS Beautify',
       beautify_on_save: false },
    csv: 
     { disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    d: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    ejs: 
     { indent_size: 4,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       space_after_anon_function: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       wrap_line_length: 250,
       end_with_newline: false,
       end_with_comma: false,
       indent_inner_html: false,
       indent_scripts: 'normal',
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 4,
       unformatted: [Object],
       extra_liners: [Object],
       disabled: false,
       default_beautifier: 'JS Beautify',
       beautify_on_save: false },
    elm: 
     { disabled: false,
       default_beautifier: 'elm-format',
       beautify_on_save: false },
    erb: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    erlang: 
     { disabled: false,
       default_beautifier: 'erl_tidy',
       beautify_on_save: false },
    gherkin: 
     { indent_size: 4,
       indent_char: ' ',
       disabled: false,
       default_beautifier: 'Gherkin formatter',
       beautify_on_save: false },
    glsl: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'clang-format',
       beautify_on_save: false },
    go: 
     { disabled: false,
       default_beautifier: 'gofmt',
       beautify_on_save: false },
    fortran: 
     { emacs_path: '',
       emacs_script_path: '',
       disabled: false,
       default_beautifier: 'Fortran Beautifier',
       beautify_on_save: false },
    handlebars: 
     { indent_inner_html: false,
       indent_size: 4,
       indent_char: ' ',
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_line_length: 250,
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 4,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object],
       disabled: false,
       default_beautifier: 'JS Beautify',
       beautify_on_save: false },
    haskell: 
     { disabled: false,
       default_beautifier: 'stylish-haskell',
       beautify_on_save: false },
    html: 
     { beautify_on_save: true,
       wrap_attributes_indent_size: 123131,
       wrap_line_length: 25021321,
       indent_inner_html: false,
       indent_size: 4,
       indent_char: ' ',
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_attributes: 'auto',
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object],
       disabled: false,
       default_beautifier: 'JS Beautify' },
    jade: 
     { indent_size: 4,
       indent_char: ' ',
       disabled: false,
       default_beautifier: 'Pug Beautify',
       beautify_on_save: false },
    java: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    js: 
     { space_after_anon_function: true,
       indent_size: 4,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       wrap_line_length: 0,
       end_with_newline: false,
       end_with_comma: false,
       disabled: false,
       default_beautifier: 'JS Beautify',
       beautify_on_save: false },
    json: 
     { indent_size: 4,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       space_after_anon_function: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       wrap_line_length: 0,
       end_with_newline: false,
       end_with_comma: false,
       disabled: false,
       default_beautifier: 'JS Beautify',
       beautify_on_save: false },
    jsx: 
     { indent_size: 4,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       space_after_anon_function: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       wrap_line_length: 0,
       end_with_newline: false,
       end_with_comma: false,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    latex: 
     { indent_char: ' ',
       indent_with_tabs: true,
       indent_preamble: false,
       always_look_for_split_braces: true,
       always_look_for_split_brackets: false,
       remove_trailing_whitespace: false,
       align_columns_in_environments: [Object],
       disabled: false,
       default_beautifier: 'Latex Beautify',
       beautify_on_save: false },
    less: 
     { indent_size: 4,
       indent_char: ' ',
       newline_between_rules: true,
       preserve_newlines: false,
       wrap_line_length: 0,
       indent_comments: true,
       force_indentation: false,
       convert_quotes: 'none',
       align_assignments: false,
       no_lead_zero: false,
       configPath: '',
       predefinedConfig: 'csscomb',
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    lua: 
     { disabled: false,
       default_beautifier: 'Lua beautifier',
       beautify_on_save: false },
    markdown: 
     { gfm: true,
       yaml: true,
       commonmark: false,
       disabled: false,
       default_beautifier: 'Tidy Markdown',
       beautify_on_save: false },
    marko: 
     { indent_size: 4,
       indent_char: ' ',
       syntax: 'html',
       indent_inner_html: false,
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_line_length: 250,
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 4,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object],
       disabled: false,
       default_beautifier: 'Marko Beautifier',
       beautify_on_save: false },
    mustache: 
     { indent_inner_html: false,
       indent_size: 4,
       indent_char: ' ',
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_line_length: 250,
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 4,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object],
       disabled: false,
       default_beautifier: 'JS Beautify',
       beautify_on_save: false },
    nunjucks: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    objectivec: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    ocaml: 
     { disabled: false,
       default_beautifier: 'ocp-indent',
       beautify_on_save: false },
    pawn: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    perl: 
     { perltidy_profile: '',
       disabled: false,
       default_beautifier: 'Perltidy',
       beautify_on_save: false },
    php: 
     { cs_fixer_path: '',
       fixers: '',
       level: '',
       phpcbf_path: '',
       standard: '',
       disabled: false,
       default_beautifier: 'PHP-CS-Fixer',
       beautify_on_save: false },
    puppet: 
     { disabled: false,
       default_beautifier: 'puppet-lint',
       beautify_on_save: false },
    python: 
     { max_line_length: 79,
       indent_size: 4,
       ignore: [Object],
       sort_imports: false,
       disabled: false,
       default_beautifier: 'autopep8',
       beautify_on_save: false },
    r: 
     { indent_size: 4,
       disabled: false,
       default_beautifier: 'formatR',
       beautify_on_save: false },
    riot: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    ruby: 
     { indent_size: 4,
       rubocop_path: '',
       indent_char: ' ',
       disabled: false,
       default_beautifier: 'Rubocop',
       beautify_on_save: false },
    rust: 
     { rustfmt_path: '',
       disabled: false,
       default_beautifier: 'rustfmt',
       beautify_on_save: false },
    sass: 
     { disabled: false,
       default_beautifier: 'SassConvert',
       beautify_on_save: false },
    scss: 
     { indent_size: 4,
       indent_char: ' ',
       newline_between_rules: true,
       preserve_newlines: false,
       wrap_line_length: 0,
       indent_comments: true,
       force_indentation: false,
       convert_quotes: 'none',
       align_assignments: false,
       no_lead_zero: false,
       configPath: '',
       predefinedConfig: 'csscomb',
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    spacebars: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    sql: 
     { indent_size: 4,
       keywords: 'upper',
       identifiers: 'unchanged',
       disabled: false,
       default_beautifier: 'sqlformat',
       beautify_on_save: false },
    svg: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    swig: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    tss: 
     { indent_size: 4,
       indent_char: ' ',
       newline_between_rules: true,
       preserve_newlines: false,
       wrap_line_length: 0,
       indent_comments: true,
       force_indentation: false,
       convert_quotes: 'none',
       align_assignments: false,
       no_lead_zero: false,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    twig: 
     { indent_size: 4,
       indent_char: ' ',
       indent_with_tabs: false,
       preserve_newlines: true,
       space_in_paren: false,
       space_after_anon_function: false,
       break_chained_methods: false,
       wrap_line_length: 250,
       end_with_comma: false,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    typescript: 
     { indent_size: 4,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       space_after_anon_function: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       wrap_line_length: 0,
       end_with_newline: false,
       end_with_comma: false,
       disabled: false,
       default_beautifier: 'TypeScript Formatter',
       beautify_on_save: false },
    ux: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    vala: 
     { configPath: '',
       disabled: false,
       default_beautifier: 'Uncrustify',
       beautify_on_save: false },
    vue: 
     { space_after_anon_function: true,
       wrap_attributes_indent_size: 4000,
       wrap_line_length: 4000,
       indent_size: 4,
       indent_char: ' ',
       indent_level: 0,
       indent_with_tabs: false,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       space_in_paren: false,
       jslint_happy: false,
       brace_style: 'collapse',
       break_chained_methods: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       space_before_conditional: true,
       eval_code: false,
       unescape_strings: false,
       end_with_newline: false,
       end_with_comma: false,
       indent_inner_html: false,
       indent_scripts: 'normal',
       wrap_attributes: 'auto',
       unformatted: [Object],
       extra_liners: [Object],
       disabled: false,
       default_beautifier: 'Vue Beautifier',
       beautify_on_save: false },
    visualforce: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    xml: 
     { indent_inner_html: false,
       indent_size: 4,
       indent_char: ' ',
       brace_style: 'collapse',
       indent_scripts: 'normal',
       wrap_line_length: 250,
       wrap_attributes: 'auto',
       wrap_attributes_indent_size: 4,
       preserve_newlines: true,
       max_preserve_newlines: 10,
       unformatted: [Object],
       end_with_newline: false,
       extra_liners: [Object],
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false },
    xtemplate: 
     { indent_size: 4,
       indent_char: ' ',
       wrap_line_length: 250,
       preserve_newlines: true,
       disabled: false,
       default_beautifier: 'Pretty Diff',
       beautify_on_save: false } },
  { _default: { html: [Object], css: [Object], js: [Object] } },
  { _default: {} },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: false,
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } },
  { html: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       end_with_newline: true,
       indent_char: ' ',
       indent_handlebars: false,
       indent_inner_html: false,
       indent_scripts: 'separate',
       indent_size: 4,
       max_preserve_newlines: 1,
       preserve_newlines: true,
       unformatted: [Object],
       wrap_line_length: 0,
       wrap_attributes: 'force',
       wrap_attributes_indent_size: 4 },
    css: 
     { allowed_file_extensions: [Object],
       end_with_newline: true,
       indent_char: ' ',
       indent_size: 4,
       newline_between_rules: true,
       selector_separator: ' ',
       selector_separator_newline: true },
    js: 
     { allowed_file_extensions: [Object],
       brace_style: 'collapse',
       break_chained_methods: false,
       e4x: false,
       end_with_newline: true,
       indent_char: ' ',
       indent_level: 0,
       indent_size: 4,
       indent_with_tabs: false,
       jslint_happy: false,
       keep_array_indentation: false,
       keep_function_indentation: false,
       max_preserve_newlines: 2,
       preserve_newlines: true,
       space_after_anon_function: false,
       space_before_conditional: true,
       space_in_empty_paren: false,
       space_in_paren: false,
       unescape_strings: false,
       wrap_line_length: 0 } } ] Vue Component /Users/albin/projects/shin/resources/assets/js/components/pages/PageIndex.vue
2017-03-23T08:36:46.737Z - verbose: [beautifiers/index.coffee]  indent_size=4, indent_char= , indent_with_tabs=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, beautify_on_save=true, wrap_attributes_indent_size=123131, wrap_line_length=25021321, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, fixers=, level=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, wrap_attributes_indent_size=4000, wrap_line_length=4000, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, , allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=1, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.739Z - verbose: [beautifiers/index.coffee] [ { name: 'Vue',
    namespace: 'vue',
    fallback: [ 'html', 'js' ],
    grammars: [ 'Vue Component' ],
    extensions: [ 'vue' ],
    defaultBeautifier: 'Vue Beautifier' } ] 'Vue Component' 'vue'
2017-03-23T08:36:46.739Z - verbose: [beautifiers/index.coffee] Language Vue supported
2017-03-23T08:36:46.740Z - verbose: [beautifiers/index.coffee] getOptions selections [ 'html', 'js', 'vue' ] indent_size=4, indent_char= , indent_with_tabs=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, beautify_on_save=true, wrap_attributes_indent_size=123131, wrap_line_length=25021321, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, fixers=, level=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, wrap_attributes_indent_size=4000, wrap_line_length=4000, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, , allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=1, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.742Z - verbose: [beautifiers/index.coffee] true indent_size=4, indent_char= , indent_with_tabs=false
2017-03-23T08:36:46.742Z - verbose: [beautifiers/index.coffee] options html
2017-03-23T08:36:46.742Z - verbose: [beautifiers/index.coffee] options html indent_size=4, indent_char= , indent_with_tabs=false
2017-03-23T08:36:46.742Z - verbose: [beautifiers/index.coffee] options js
2017-03-23T08:36:46.742Z - verbose: [beautifiers/index.coffee] options js indent_size=4, indent_char= , indent_with_tabs=false
2017-03-23T08:36:46.742Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.742Z - verbose: [beautifiers/index.coffee] options vue indent_size=4, indent_char= , indent_with_tabs=false
2017-03-23T08:36:46.743Z - verbose: [beautifiers/index.coffee] true configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, beautify_on_save=true, wrap_attributes_indent_size=123131, wrap_line_length=25021321, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, fixers=, level=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, wrap_attributes_indent_size=4000, wrap_line_length=4000, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false
2017-03-23T08:36:46.752Z - verbose: [beautifiers/index.coffee] options html beautify_on_save=true, wrap_attributes_indent_size=123131, wrap_line_length=25021321, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify
2017-03-23T08:36:46.752Z - verbose: [beautifiers/index.coffee] options html beautify_on_save=true, wrap_attributes_indent_size=123131, wrap_line_length=25021321, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify
2017-03-23T08:36:46.752Z - verbose: [beautifiers/index.coffee] options js space_after_anon_function=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false
2017-03-23T08:36:46.753Z - verbose: [beautifiers/index.coffee] options js beautify_on_save=false, wrap_attributes_indent_size=123131, wrap_line_length=0, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, space_after_anon_function=true, indent_level=0, indent_with_tabs=false, space_in_paren=false, jslint_happy=false, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, end_with_comma=false
2017-03-23T08:36:46.753Z - verbose: [beautifiers/index.coffee] options vue space_after_anon_function=true, wrap_attributes_indent_size=4000, wrap_line_length=4000, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options vue beautify_on_save=false, wrap_attributes_indent_size=4000, wrap_line_length=4000, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, space_after_anon_function=true, indent_level=0, indent_with_tabs=false, space_in_paren=false, jslint_happy=false, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, end_with_comma=false
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options html
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options js
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] true 
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options html
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options html
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options js
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options js
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.754Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.755Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=1, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=1, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.756Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.757Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.758Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] true allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options html allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options js allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options vue
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] options vue allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=2, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, break_chained_methods=false, e4x=false, indent_level=0, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] Vue Component name=Vue, namespace=vue, fallback=[html, js], grammars=[Vue Component], extensions=[vue], defaultBeautifier=Vue Beautifier
2017-03-23T08:36:46.759Z - verbose: [beautifiers/index.coffee] language options: {
    "indent_size": 4,
    "indent_char": " ",
    "indent_with_tabs": false,
    "beautify_on_save": false,
    "wrap_attributes_indent_size": 4,
    "wrap_line_length": 0,
    "indent_inner_html": false,
    "brace_style": "collapse",
    "indent_scripts": "separate",
    "wrap_attributes": "force",
    "preserve_newlines": true,
    "max_preserve_newlines": 2,
    "unformatted": [
        "a",
        "img",
        "code",
        "pre",
        "sub",
        "sup",
        "em",
        "strong",
        "b",
        "i",
        "u",
        "strike",
        "big",
        "small",
        "pre",
        "h1",
        "h2",
        "h3",
        "h4",
        "h5",
        "h6"
    ],
    "end_with_newline": true,
    "extra_liners": [
        "head",
        "body",
        "/html"
    ],
    "disabled": false,
    "default_beautifier": "Vue Beautifier",
    "space_after_anon_function": false,
    "indent_level": 0,
    "space_in_paren": false,
    "jslint_happy": false,
    "break_chained_methods": false,
    "keep_array_indentation": false,
    "keep_function_indentation": false,
    "space_before_conditional": true,
    "eval_code": false,
    "unescape_strings": false,
    "end_with_comma": false,
    "html": {
        "allowed_file_extensions": [
            "htm",
            "html",
            "xhtml",
            "shtml",
            "xml",
            "svg",
            "blade.php",
            "vue"
        ],
        "brace_style": "collapse",
        "end_with_newline": true,
        "indent_char": " ",
        "indent_handlebars": false,
        "indent_inner_html": false,
        "indent_scripts": "separate",
        "indent_size": 4,
        "max_preserve_newlines": 1,
        "preserve_newlines": true,
        "unformatted": [
            "a",
            "img",
            "code",
            "pre",
            "sub",
            "sup",
            "em",
            "strong",
            "b",
            "i",
            "u",
            "strike",
            "big",
            "small",
            "pre",
            "h1",
            "h2",
            "h3",
            "h4",
            "h5",
            "h6"
        ],
        "wrap_line_length": 0,
        "wrap_attributes": "force",
        "wrap_attributes_indent_size": 4
    },
    "css": {
        "allowed_file_extensions": [
            "css",
            "scss",
            "sass",
            "less"
        ],
        "end_with_newline": true,
        "indent_char": " ",
        "indent_size": 4,
        "newline_between_rules": true,
        "selector_separator": " ",
        "selector_separator_newline": true
    },
    "js": {
        "allowed_file_extensions": [
            "js",
            "json",
            "jshintrc",
            "jsbeautifyrc",
            "vue"
        ],
        "brace_style": "collapse",
        "break_chained_methods": false,
        "e4x": false,
        "end_with_newline": true,
        "indent_char": " ",
        "indent_level": 0,
        "indent_size": 4,
        "indent_with_tabs": false,
        "jslint_happy": false,
        "keep_array_indentation": false,
        "keep_function_indentation": false,
        "max_preserve_newlines": 2,
        "preserve_newlines": true,
        "space_after_anon_function": false,
        "space_before_conditional": true,
        "space_in_empty_paren": false,
        "space_in_paren": false,
        "unescape_strings": false,
        "wrap_line_length": 0
    },
    "allowed_file_extensions": [
        "js",
        "json",
        "jshintrc",
        "jsbeautifyrc",
        "vue",
        "svg",
        "blade.php",
        "vue"
    ],
    "indent_handlebars": false,
    "e4x": false,
    "space_in_empty_paren": false
}
2017-03-23T08:36:46.760Z - verbose: [beautifiers/index.coffee] Vue /Users/albin/projects/shin/resources/assets/js/components/pages/PageIndex.vue { indent_size: 4,
  indent_char: ' ',
  indent_with_tabs: false,
  beautify_on_save: false,
  wrap_attributes_indent_size: 4,
  wrap_line_length: 0,
  indent_inner_html: false,
  brace_style: 'collapse',
  indent_scripts: 'separate',
  wrap_attributes: 'force',
  preserve_newlines: true,
  max_preserve_newlines: 2,
  unformatted: 
   [ 'a',
     'img',
     'code',
     'pre',
     'sub',
     'sup',
     'em',
     'strong',
     'b',
     'i',
     'u',
     'strike',
     'big',
     'small',
     'pre',
     'h1',
     'h2',
     'h3',
     'h4',
     'h5',
     'h6' ],
  end_with_newline: true,
  extra_liners: [ 'head', 'body', '/html' ],
  disabled: false,
  default_beautifier: 'Vue Beautifier',
  space_after_anon_function: false,
  indent_level: 0,
  space_in_paren: false,
  jslint_happy: false,
  break_chained_methods: false,
  keep_array_indentation: false,
  keep_function_indentation: false,
  space_before_conditional: true,
  eval_code: false,
  unescape_strings: false,
  end_with_comma: false,
  html: 
   { allowed_file_extensions: [ 'htm', 'html', 'xhtml', 'shtml', 'xml', 'svg', 'blade.php', 'vue' ],
     brace_style: 'collapse',
     end_with_newline: true,
     indent_char: ' ',
     indent_handlebars: false,
     indent_inner_html: false,
     indent_scripts: 'separate',
     indent_size: 4,
     max_preserve_newlines: 1,
     preserve_newlines: true,
     unformatted: 
      [ 'a',
        'img',
        'code',
        'pre',
        'sub',
        'sup',
        'em',
        'strong',
        'b',
        'i',
        'u',
        'strike',
        'big',
        'small',
        'pre',
        'h1',
        'h2',
        'h3',
        'h4',
        'h5',
        'h6' ],
     wrap_line_length: 0,
     wrap_attributes: 'force',
     wrap_attributes_indent_size: 4 },
  css: 
   { allowed_file_extensions: [ 'css', 'scss', 'sass', 'less' ],
     end_with_newline: true,
     indent_char: ' ',
     indent_size: 4,
     newline_between_rules: true,
     selector_separator: ' ',
     selector_separator_newline: true },
  js: 
   { allowed_file_extensions: [ 'js', 'json', 'jshintrc', 'jsbeautifyrc', 'vue' ],
     brace_style: 'collapse',
     break_chained_methods: false,
     e4x: false,
     end_with_newline: true,
     indent_char: ' ',
     indent_level: 0,
     indent_size: 4,
     indent_with_tabs: false,
     jslint_happy: false,
     keep_array_indentation: false,
     keep_function_indentation: false,
     max_preserve_newlines: 2,
     preserve_newlines: true,
     space_after_anon_function: false,
     space_before_conditional: true,
     space_in_empty_paren: false,
     space_in_paren: false,
     unescape_strings: false,
     wrap_line_length: 0 },
  allowed_file_extensions: 
   [ 'js',
     'json',
     'jshintrc',
     'jsbeautifyrc',
     'vue',
     'svg',
     'blade.php',
     'vue' ],
  indent_handlebars: false,
  e4x: false,
  space_in_empty_paren: false } indent_size=4, indent_char= , indent_with_tabs=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=2, disabled=false, default_beautifier=beautysh, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=cljfmt, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=coffee-fmt, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=Crystal, beautify_on_save=false, indent_size=4, indent_char= , selector_separator_newline=false, newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, end_with_newline=false, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=250, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, wrap_attributes_indent_size=4, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=elm-format, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=erl_tidy, beautify_on_save=false, indent_size=4, indent_char= , disabled=false, default_beautifier=Gherkin formatter, beautify_on_save=false, configPath=, disabled=false, default_beautifier=clang-format, beautify_on_save=false, disabled=false, default_beautifier=gofmt, beautify_on_save=false, emacs_path=, emacs_script_path=, disabled=false, default_beautifier=Fortran Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, disabled=false, default_beautifier=stylish-haskell, beautify_on_save=false, beautify_on_save=true, wrap_attributes_indent_size=123131, wrap_line_length=25021321, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_attributes=auto, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, indent_size=4, indent_char= , disabled=false, default_beautifier=Pug Beautify, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_char= , indent_with_tabs=true, indent_preamble=false, always_look_for_split_braces=true, always_look_for_split_brackets=false, remove_trailing_whitespace=false, align_columns_in_environments=[tabular, matrix, bmatrix, pmatrix], disabled=false, default_beautifier=Latex Beautify, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, disabled=false, default_beautifier=Lua beautifier, beautify_on_save=false, gfm=true, yaml=true, commonmark=false, disabled=false, default_beautifier=Tidy Markdown, beautify_on_save=false, indent_size=4, indent_char= , syntax=html, indent_inner_html=false, brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Marko Beautifier, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=JS Beautify, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, disabled=false, default_beautifier=ocp-indent, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, perltidy_profile=, disabled=false, default_beautifier=Perltidy, beautify_on_save=false, cs_fixer_path=, fixers=, level=, phpcbf_path=, standard=, disabled=false, default_beautifier=PHP-CS-Fixer, beautify_on_save=false, disabled=false, default_beautifier=puppet-lint, beautify_on_save=false, max_line_length=79, indent_size=4, ignore=[E24], sort_imports=false, disabled=false, default_beautifier=autopep8, beautify_on_save=false, indent_size=4, disabled=false, default_beautifier=formatR, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, rubocop_path=, indent_char= , disabled=false, default_beautifier=Rubocop, beautify_on_save=false, rustfmt_path=, disabled=false, default_beautifier=rustfmt, beautify_on_save=false, disabled=false, default_beautifier=SassConvert, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, configPath=, predefinedConfig=csscomb, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, keywords=upper, identifiers=unchanged, disabled=false, default_beautifier=sqlformat, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , newline_between_rules=true, preserve_newlines=false, wrap_line_length=0, indent_comments=true, force_indentation=false, convert_quotes=none, align_assignments=false, no_lead_zero=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_with_tabs=false, preserve_newlines=true, space_in_paren=false, space_after_anon_function=false, break_chained_methods=false, wrap_line_length=250, end_with_comma=false, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, space_after_anon_function=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, wrap_line_length=0, end_with_newline=false, end_with_comma=false, disabled=false, default_beautifier=TypeScript Formatter, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, configPath=, disabled=false, default_beautifier=Uncrustify, beautify_on_save=false, space_after_anon_function=true, wrap_attributes_indent_size=4000, wrap_line_length=4000, indent_size=4, indent_char= , indent_level=0, indent_with_tabs=false, preserve_newlines=true, max_preserve_newlines=10, space_in_paren=false, jslint_happy=false, brace_style=collapse, break_chained_methods=false, keep_array_indentation=false, keep_function_indentation=false, space_before_conditional=true, eval_code=false, unescape_strings=false, end_with_newline=false, end_with_comma=false, indent_inner_html=false, indent_scripts=normal, wrap_attributes=auto, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], extra_liners=[head, body, /html], disabled=false, default_beautifier=Vue Beautifier, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_inner_html=false, indent_size=4, indent_char= , brace_style=collapse, indent_scripts=normal, wrap_line_length=250, wrap_attributes=auto, wrap_attributes_indent_size=4, preserve_newlines=true, max_preserve_newlines=10, unformatted=[a, abbr, area, audio, b, bdi, bdo, br, button, canvas, cite, code, data, datalist, del, dfn, em, embed, i, iframe, img, input, ins, kbd, keygen, label, map, mark, math, meter, noscript, object, output, progress, q, ruby, s, samp, select, small, span, strong, sub, sup, svg, template, textarea, time, u, var, video, wbr, text, acronym, address, big, dt, ins, small, strike, tt, pre, h1, h2, h3, h4, h5, h6], end_with_newline=false, extra_liners=[head, body, /html], disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, indent_size=4, indent_char= , wrap_line_length=250, preserve_newlines=true, disabled=false, default_beautifier=Pretty Diff, beautify_on_save=false, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, , allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=false, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=1, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0, allowed_file_extensions=[htm, html, xhtml, shtml, xml, svg, blade.php, vue], brace_style=collapse, end_with_newline=true, indent_char= , indent_handlebars=false, indent_inner_html=false, indent_scripts=separate, indent_size=4, max_preserve_newlines=1, preserve_newlines=true, unformatted=[a, img, code, pre, sub, sup, em, strong, b, i, u, strike, big, small, pre, h1, h2, h3, h4, h5, h6], wrap_line_length=0, wrap_attributes=force, wrap_attributes_indent_size=4, allowed_file_extensions=[css, scss, sass, less], end_with_newline=true, indent_char= , indent_size=4, newline_between_rules=true, selector_separator= , selector_separator_newline=true, allowed_file_extensions=[js, json, jshintrc, jsbeautifyrc, vue], brace_style=collapse, break_chained_methods=false, e4x=false, end_with_newline=true, indent_char= , indent_level=0, indent_size=4, indent_with_tabs=false, jslint_happy=false, keep_array_indentation=false, keep_function_indentation=false, max_preserve_newlines=2, preserve_newlines=true, space_after_anon_function=false, space_before_conditional=true, space_in_empty_paren=false, space_in_paren=false, unescape_strings=false, wrap_line_length=0
2017-03-23T08:36:46.762Z - verbose: [beautifiers/index.coffee] beautifiers 0=Vue Beautifier
2017-03-23T08:36:46.762Z - verbose: [beautifiers/index.coffee] beautifier Vue Beautifier

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment