forked from Aintaer/nbd.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscs.json
17 lines (17 loc) · 814 Bytes
/
.jscs.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"requireCurlyBraces": ["if", "else", "for", "while", "do"],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return"],
"requireRightStickedOperators": ["!"],
"requireLeftStickedOperators": [","],
"disallowImplicitTypeConversion": ["string"],
"disallowKeywords": ["with"],
"requireLineFeedAtFileEnd": true,
"disallowLeftStickedOperators": ["?", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowRightStickedOperators": ["?", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=", ",", ":"],
"disallowSpacesInsideParentheses": true,
"disallowSpacesInsideArrayBrackets": true,
"requireKeywordsOnNewLine": ["else"],
"disallowMultipleLineBreaks": true,
"disallowSpaceAfterObjectKeys": true,
"disallowQuotedKeysInObjects": true
}