-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.jsbeautifyrc
31 lines (29 loc) · 1.14 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
{
"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", "template", "textarea", "time", "u", "var", "video", "wbr", "text", "acronym",
"address", "big", "dt", "ins", "small", "strike", "tt", "pre", "h1", "h2", "h3", "h4", "h5", "h6"],
"html": {
"indent_with_tabs": false,
"indent_size": 4,
"wrap_line_length": 160
},
"js": {
"brace_style": "collapse,preserve-inline",
"break_chained_methods": false,
"indent_with_tabs": true,
"indent_size": 4,
"jslint_happy": false,
"jslint_happy_align_switch_case": false,
"space_after_anon_function": true,
"space_before_conditional": false,
"space_in_empty_paren": false,
"space_in_paren": false,
"max_preserve_newlines": 2,
"preserve_newlines": true,
"keep_array_indentation": true,
"end_with_newline": true,
"wrap_line_length": 160
}
}