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+ "requireSpacesInsideObjectBrackets" : " allButNested" ,
8+ "disallowSpacesInsideArrayBrackets" : true ,
9+ "disallowSpacesInsideParentheses" : true ,
10+ "disallowSpaceAfterObjectKeys" : true ,
11+ "disallowQuotedKeysInObjects" : true ,
12+ "requireSpaceBeforeBinaryOperators" : [" ?" , " +" , " /" , " *" , " =" , " ==" , " ===" , " !=" , " !==" , " >" , " >=" , " <" , " <=" ],
13+ "disallowSpaceAfterBinaryOperators" : [" !" ],
14+ "requireSpaceAfterBinaryOperators" : [" ?" , " ," , " +" , " /" , " *" , " :" , " =" , " ==" , " ===" , " !=" , " !==" , " >" , " >=" , " <" , " <=" ],
15+ "disallowSpaceBeforeBinaryOperators" : [" ," ],
16+ "disallowSpaceAfterPrefixUnaryOperators" : [" ++" , " --" , " +" , " -" , " ~" , " !" ],
17+ "disallowSpaceBeforePostfixUnaryOperators" : [" ++" , " --" ],
18+ "requireSpaceBeforeBinaryOperators" : [" +" , " -" , " /" , " *" , " =" , " ==" , " ===" , " !=" , " !==" ],
19+ "requireSpaceAfterBinaryOperators" : [" +" , " -" , " /" , " *" , " =" , " ==" , " ===" , " !=" , " !==" ],
20+ "disallowImplicitTypeConversion" : [" numeric" , " binary" , " string" ],
21+ "disallowKeywords" : [" with" , " eval" ],
22+ "disallowMultipleLineBreaks" : true ,
23+ "disallowKeywordsOnNewLine" : [" else" ],
24+ "requireLineFeedAtFileEnd" : true ,
25+ "excludeFiles" : [" node_modules/**" , " bower_components/**" ],
26+ "validateIndentation" : 2
27+ }
0 commit comments