-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.jscsrc
37 lines (37 loc) · 1.35 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
{
"requireCommaBeforeLineBreak": true,
"disallowEmptyBlocks": true,
"disallowFunctionDeclarations": true,
"disallowKeywordsOnNewLine": ["else", "catch"],
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineStrings": true,
"disallowMultipleSpaces": true,
"disallowNewlineBeforeBlockStatements": true,
"disallowOperatorBeforeLineBreak": ["."],
"disallowQuotedKeysInObjects": true,
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowSpacesInCallExpression": true,
"maximumLineLength": 100,
"maximumNumberOfLines": 500,
"requireBlocksOnNewline": true,
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"requireCommaBeforeLineBreak": true,
"requireDotNotation": true,
"requireLineBreakAfterVariableAssignment": true,
"requireSemicolons": true,
"requireSpaceAfterKeywords": ["do","for","if","else","switch","case","try","catch","void","while","with","return","typeof"],
"requireSpaceBetweenArguments": true,
"requireSpacesInConditionalExpression": {
"afterTest": true,
"beforeConsequent": true,
"afterConsequent": true,
"beforeAlternate": true
},
"requireSpacesInFunction": {
"beforeOpeningCurlyBrace": true
},
"validateIndentation": "\t",
"validateLineBreaks": "LF",
"validateParameterSeparator": ", "
}