-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jsbeautifyrc
41 lines (41 loc) · 966 Bytes
/
.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
{
"js": {
"indent_with_tabs": true,
"eol": "\n",
"end_with_newline": false,
"indent_level": 0,
"preserve_newlines": true,
"max_preserve_newlines": 2,
"space_in_paren": false,
"space_in_empty_paren": false,
"jslint_happy": false,
"space_after_anon_function": true,
"brace_style": "collapse",
"break_chained_methods": false,
"keep_array_indentation": false,
"unescape_strings": false,
"wrap_line_length": 0,
"e4x": false,
"comma_first": false,
"operator_position": "before-newline"
},
"css": {
"eol": "\n",
"end_with_newline": false,
"selector_separator_newline": true,
"newline_between_rules": true,
"indent_with_tabs": true
},
"html": {
"eol": "\n",
"end_with_newline": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"indent_inner_html": false,
"brace_style": "collapse",
"indent_scripts": "normal",
"wrap_line_length": 0,
"wrap_attributes": "auto",
"indent_with_tabs": true
}
}