-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscsrc
59 lines (59 loc) · 1.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"disallowDanglingUnderscores": true,
"disallowArrayDestructuringReturn": true,
"disallowIdenticalDestructuringNames": true,
"disallowMixedSpacesAndTabs": "smart",
"disallowEmptyBlocks": true,
"disallowMultiLineTernary": true,
"disallowMultipleLineBreaks": true,
"disallowMultipleLineStrings": true,
"disallowNestedTernaries": true,
"disallowNewlineBeforeBlockStatements": true,
"disallowOperatorBeforeLineBreak": true,
"disallowSpaceBeforeSemicolon": true,
"disallowSpacesInCallExpression": true,
"disallowTrailingComma": true,
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireCapitalizedComments": true,
"requireCapitalizedConstructors": true,
"requireParenthesesAroundIIFE": true,
"requireSemicolons": true,
"requireSpaceAfterBinaryOperators": true,
"requireSpaceAfterComma": true,
"requireSpaceAfterKeywords": true,
"requireSpaceAfterLineComment": true,
"requireSpaceBeforeBinaryOperators": true,
"requireSpaceBeforeBlockStatements": true,
"requireSpaceBeforeObjectValues": true,
"requireSpaceBetweenArguments": true,
"requireSpacesInForStatement": true,
"requireYodaConditions": true,
"requireSpacesInConditionalExpression": {
"afterTest": true,
"beforeConsequent": true,
"afterConsequent": true,
"beforeAlternate": true
},
"requireBlocksOnNewline": true,
"requireDollarBeforejQueryAssignment": true,
"requireImportAlphabetized": true,
"requireKeywordsOnNewLine": [
"else",
"case",
"break",
"continue",
"debugger",
"do",
"return",
"switch"
],
"requireCommaBeforeLineBreak": true,
"requireMatchingFunctionName": true,
"requireNewlineBeforeSingleStatementsInIf": true,
"requireObjectKeysOnNewLine": true,
"requirePaddingNewLinesAfterUseStrict": true,
"requirePaddingNewLinesBeforeLineComments": true,
"validateQuoteMarks": "'",
"maxErrors": 10000,
"validateIndentation": "\t"
}