-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.jscsrc
40 lines (38 loc) · 1.59 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
32
33
34
35
36
37
38
39
40
{
"disallowDanglingUnderscores": true,
"disallowEmptyBlocks": true,
"disallowMixedSpacesAndTabs": true,
"disallowImplicitTypeConversion": ["numeric", "boolean", "binary", "string"],
"disallowMultipleLineBreaks": true,
"disallowMultipleLineStrings": true,
"disallowMultipleVarDecl": true,
"disallowNewlineBeforeBlockStatements": true,
"disallowOperatorBeforeLineBreak": ["+", "."],
"disallowSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "try", "catch"],
"disallowSpaceBeforeBlockStatements": true,
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowSpacesInCallExpression": true,
"disallowTrailingComma": true,
"disallowTrailingWhitespace": true,
"disallowYodaConditions": true,
"disallowSpacesInFunction": {
"beforeOpeningCurlyBrace": true
},
"requireKeywordsOnNewLine": ["else", "if"],
"requireParenthesesAroundIIFE": true,
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch", "case", "default"],
"requireSpaceAfterBinaryOperators": ["=", ",", "+", "-", "/", "*", "==", "===", "!=", "!=="],
"requireSpaceBeforeBinaryOperators": ["=", "+", "-", "/", "*", "==", "===", "!=", "!=="],
"requireLineBreakAfterVariableAssignment": true,
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"requireSpacesInForStatement": true,
"requireSpacesInConditionalExpression": {
"afterTest": true,
"beforeConsequent": true,
"afterConsequent": true,
"beforeAlternate": true
},
"validateParameterSeparator": ", ",
"validateQuoteMarks": { "mark": "'", "escape": true },
"maximumLineLength": 120
}