-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.jscs.json
20 lines (20 loc) · 936 Bytes
/
.jscs.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"requireCurlyBraces": ["for", "while", "do", "try", "catch"],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try"],
"disallowLeftStickedOperators": ["?", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowRightStickedOperators": ["?", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"requireRightStickedOperators": ["!", "++", "--"],
"requireLeftStickedOperators": [",", "++", "--"],
"disallowImplicitTypeConversion": [],
"disallowKeywords": ["with"],
"disallowMultipleLineBreaks": true,
"disallowKeywordsOnNewLine": [],
"requireKeywordsOnNewLine": ["else"],
"requireLineFeedAtFileEnd": true,
"requireParenthesesAroundIIFE": true,
"disallowSpaceAfterObjectKeys": true,
"requireCommaBeforeLineBreak": true,
"disallowMixedSpacesAndTabs": true,
"disallowTrailingWhitespace": true,
"excludeFiles": []
}