-
Notifications
You must be signed in to change notification settings - Fork 44
/
.jscsrc
69 lines (69 loc) · 1.75 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
60
61
62
63
64
65
66
67
68
69
{
"disallowEmptyBlocks": true,
"disallowMultipleLineStrings": true,
"disallowSpaceAfterKeywords": [
"do",
"for",
"if",
"else",
"switch",
"try",
"catch",
"finally",
"void",
"while",
"with",
"typeof"
],
"disallowSpaceAfterPrefixUnaryOperators": true,
"disallowSpaceBeforePostfixUnaryOperators": true,
"disallowSpaceBeforeComma": true,
"disallowSpaceBeforeSemicolon": true,
"disallowSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInNamedFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"disallowTabs": true,
"disallowTrailingComma": true,
"disallowTrailingWhitespace": true,
"maximumLineLength": 120,
"requireCapitalizedConstructors": true,
"requireCommaBeforeLineBreak": true,
"requireCurlyBraces": [
"if",
"else",
"for",
"while",
"do",
"try",
"catch"
],
"requireDotNotation": {
"allExcept": [ "snake_case", "keywords" ]
},
"requireNewlineBeforeBlockStatements": [
"if",
"else",
"try",
"catch",
"finally",
"do",
"while",
"for"
],
"requirePaddingNewLinesAfterUseStrict": true,
"requireSpaceBeforeObjectValues": true,
"requireSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"requireSpacesInConditionalExpression": true,
"requireSpacesInsideBrackets": true,
"requireSpacesInsideParentheses": {
"all": true
},
"validateIndentation": 4,
"validateParameterSeparator": ", ",
"validateQuoteMarks": { "mark": "\"", "escape": true }
}