{ // The plugin looks for a .jsbeautifyrc file in the same directory as the // source file you're prettifying (or any directory above if it doesn't exist, // or in your home folder if everything else fails) and uses those options // along the default ones. // Details: https://github.com/victorporof/Sublime-HTMLPrettify#using-your-own-jsbeautifyrc-options // Documentation: https://github.com/einars/js-beautify/ "html": { "allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "hbs", "twig"], "brace_style": "collapse", "end_with_newline": false, // End output with newline "indent_char": " ", // Indentation character "indent_handlebars": false, // e.g. {{#foo}}, {{/foo}} "indent_inner_html": true, // Indent and sections "indent_scripts": "keep", // [keep|separate|normal] "indent_size": 4, // Indentation size "max_preserve_newlines": 1, // Maximum number of line breaks to be preserved in one chunk (0 disables) "preserve_newlines": true, // Whether existing line breaks before elements should be preserved (only works before elements, not inside tags or for text) "unformatted": ["a", "span", "img", "code", "pre", "sub", "sup", "em", "strong", "b", "i", "u", "strike", "big", "small", "pre", "h1", "h2", "h3", "h4", "h5", "h6" ], // List of tags that should not be reformatted "wrap_line_length": 0 // Lines should wrap at next opportunity after this number of characters (0 disables) }, "css": { "allowed_file_extensions": ["css", "scss", "sass", "less"], "end_with_newline": false, // End output with newline "indent_char": " ", // Indentation character "indent_size": 4, // Indentation size "newline_between_rules": true, // Add a new line after every css rule "selector_separator": " ", "selector_separator_newline": true, // Separate selectors with newline or not (e.g. "a,\nbr" or "a, br"), "indent_with_tabs": true }, "js": { "indent_size": 4, "indent_char": " ", "indent_level": 0, "indent_with_tabs": true, "preserve_newlines": true, "max_preserve_newlines": 3, "jslint_happy": true, "space_after_anon_function": false, "brace_style": "collapse", "keep_array_indentation": false, "keep_function_indentation": false, "space_before_conditional": true, "break_chained_methods": false, "eval_code": false, "unescape_strings": false, "wrap_line_length": 180 } }