-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jsfmtrc
34 lines (30 loc) · 808 Bytes
/
.jsfmtrc
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
{
"// docs, basically" : "https://github.com/paulirish/sublime-jsfmt#formatting-rules",
"preset": "jquery",
"plugins": [
"esformatter-quotes",
"esformatter-semicolons",
"esformatter-braces"
],
"quotes": {
"type": "single",
"avoidEscape": false
},
"indent": {
"value": " " // four spaces, b.
},
"whiteSpace": {
"before": {
"ArgumentList": 1,
"ArgumentListObjectExpression": 1,
"ArgumentListFunctionExpression": 1,
"ArgumentListArrayExpression": 1
},
"after": {
"ArgumentList": 1,
"ArgumentListObjectExpression": 1,
"ArgumentListFunctionExpression": 1,
"ArgumentListArrayExpression": 1
}
}
}