-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jscsrc
31 lines (30 loc) · 1.18 KB
/
.jscsrc
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
{
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch", "finally"],
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch", "finally"],
"disallowSpaceAfterKeywords": [],
"requireSpacesInFunctionExpression": {
"beforeOpeningCurlyBrace": true
},
"disallowSpacesInFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"requireSpaceBeforeBinaryOperators": ["?", "+", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "-"],
"requireSpaceAfterBinaryOperators": ["?", "+", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "-", ","],
"disallowEmptyBlocks": true,
"disallowSpaceAfterPrefixUnaryOperators": ["!"],
"disallowSpaceBeforeBinaryOperators": [","],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowImplicitTypeConversion": ["string"],
"disallowKeywords": ["with"],
"disallowMultipleLineBreaks": true,
"disallowKeywordsOnNewLine": ["else", "catch", "finally"],
"disallowTrailingWhitespace": true,
"requireLineFeedAtFileEnd": true,
"requireBlocksOnNewline": true,
"validateIndentation": "\t",
"excludeFiles": [
"node_modules/**",
"dist/**",
"docs/**"
]
}