-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jsbeautifyrc
executable file
·48 lines (48 loc) · 1.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"brace_style": "collapse",
"break_chained_methods": false,
"comma_first": false,
"e4x": false,
"editorconfig": true,
"end_with_newline": false,
"eol": "\n",
"indent_char": " ",
"indent_empty_lines": false,
"indent_level": 0,
"indent_size": 4,
"indent_with_tabs": false,
"jslint_happy": false,
"keep_array_indentation": false,
"max_preserve_newlines": 2,
"operator_position": "before-newline",
"preserve_newlines": true,
"space_after_anon_function": false,
"space_after_named_function": false,
"space_in_empty_paren": false,
"space_in_paren": false,
"templating": ["auto"],
"unescape_strings": false,
"unindent_chained_methods": false,
"wrap_line_length": 0,
"html": {
"allowed_file_extensions": ["html", "svg"],
"indent_handlebars": true,
"indent_inner_html": false,
"indent_scripts": "keep",
"unformatted": ["a", "span", "img", "code", "pre", "sub", "sup", "em", "strong", "b", "i", "u", "strike", "big", "small", "pre", "h1", "h2", "h3", "h4", "h5", "h6"]
},
"css": {
"allowed_file_extensions": ["css", "scss"],
"newline_between_rules": true,
"selector_separator": " ",
"selector_separator_newline": false,
"space_around_combinator": false
},
"js": {
"allowed_file_extensions": ["js", "json", "jsbeautifyrc"],
"break_chained_methods": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"space_in_empty_paren": false
}
}