-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jsbeautifyrc
34 lines (32 loc) · 1.86 KB
/
.jsbeautifyrc
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
27
28
29
30
31
32
33
34
{
// 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/
"objsort": "all",
"html": {
"allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "dust"],
"brace_style": "collapse", // [collapse|expand|end-expand|none] Put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line, or attempt to keep them where they are
"end_with_newline": true, // End output with newline
"indent_char": " ", // Indentation character
"indent_handlebars": false, // e.g. {{#foo}}, {{/foo}}
"indent_inner_html": false, // Indent <head> and <body> sections
"indent_scripts": "normal", // [keep|separate|normal]
"indent_size": 4, // Indentation size
"max_preserve_newlines": 5, // 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": ["img", "code", "pre"], // 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)
"extra_liners": [
"head", "body", "/html", "div", "table", "h1", "h2", "h3", "h4", "h5", "h6", "ol", "ul"
]
},
"css": {
"objsort": "css"
},
"scss": {
"objsort": "scss"
}
}