-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jsbeautifyrc
44 lines (42 loc) · 1.07 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
{
"beautify.language": {
"js": {
"type": ["javascript", "json"],
"filename": [".jshintrc", ".jsbeautify"],
"ext": ["js", "json"]
},
"css": ["css", "scss"],
"html": ["htm", "html"]
},
"js": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 2,
"jslint_happy": false,
"brace_style": "end-expand,preserve-inline"
},
"html": {
"brace_style": "expand",
"indent_char": " ",
"indent_scripts": "normal",
"indent_size": 2,
"max_preserve_newlines": 1,
"preserve_newlines": false,
"unformatted": ["a", "sub", "sup", "b", "i", "u"],
"wrap_line_length": 0,
"end_with_newline": true
},
"css": {
"indent_char": " ",
"indent_size": 4
},
"sql": {
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false
}
}