1
+ {
2
+ "requireCurlyBraces" : [" else" , " for" , " while" , " do" , " try" , " catch" ],
3
+ "requireSpaceAfterKeywords" : [" if" , " else" , " for" , " while" , " do" , " switch" , " return" , " try" , " catch" , " function" ],
4
+ "requireSpacesInFunctionExpression" : {
5
+ "beforeOpeningCurlyBrace" : true
6
+ },
7
+ "disallowMultipleVarDecl" : true ,
8
+ "requireSpacesInsideObjectBrackets" : " allButNested" ,
9
+ "disallowSpacesInsideArrayBrackets" : true ,
10
+ "disallowSpacesInsideParentheses" : true ,
11
+ "disallowSpaceAfterObjectKeys" : true ,
12
+ "disallowQuotedKeysInObjects" : true ,
13
+ "requireSpaceBeforeBinaryOperators" : [" ?" , " +" , " /" , " *" , " =" , " ==" , " ===" , " !=" , " !==" , " >" , " >=" , " <" , " <=" ],
14
+ "disallowSpaceAfterBinaryOperators" : [" !" ],
15
+ "requireSpaceAfterBinaryOperators" : [" ?" , " ," , " +" , " /" , " *" , " :" , " =" , " ==" , " ===" , " !=" , " !==" , " >" , " >=" , " <" , " <=" ],
16
+ "disallowSpaceBeforeBinaryOperators" : [" ," ],
17
+ "disallowSpaceAfterPrefixUnaryOperators" : [" ++" , " --" , " +" , " -" , " ~" , " !" ],
18
+ "disallowSpaceBeforePostfixUnaryOperators" : [" ++" , " --" ],
19
+ "requireSpaceBeforeBinaryOperators" : [" +" , " -" , " /" , " *" , " =" , " ==" , " ===" , " !=" , " !==" ],
20
+ "requireSpaceAfterBinaryOperators" : [" +" , " -" , " /" , " *" , " =" , " ==" , " ===" , " !=" , " !==" ],
21
+ "disallowImplicitTypeConversion" : [" numeric" , " binary" , " string" ],
22
+ "disallowKeywords" : [" with" , " eval" ],
23
+ "disallowMultipleLineBreaks" : true ,
24
+ "disallowKeywordsOnNewLine" : [" else" ],
25
+ "requireLineFeedAtFileEnd" : true ,
26
+ "disallowTrailingWhitespace" : true ,
27
+ "excludeFiles" : [" node_modules/**" , " bower_components/**" ],
28
+ "validateIndentation" : 2
29
+ }
0 commit comments