.jsbeautifyrc 815 Bytes
Newer Older
Alexander Bazo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
{
// Details: https://github.com/victorporof/Sublime-HTMLPrettify#using-your-own-jsbeautifyrc-options
"js": {
    "allowed_file_extensions": ["js", "json", "jshintrc", "jsbeautifyrc"],
    "brace_style": "collapse-preserve-inline",
    "break_chained_methods": false, 
    "e4x": false,
    "eol": "\n",
    "end_with_newline": false,
    "indent_char": " ",
    "indent_level": 0,
    "indent_size": 2,
    "indent_with_tabs": false,
    "jslint_happy": false, 
    "keep_array_indentation": false, 
    "keep_function_indentation": false,
    "max_preserve_newlines": 0, 
    "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": 80 
  }
}