-
Notifications
You must be signed in to change notification settings - Fork 11
/
.jscsrc
32 lines (32 loc) · 839 Bytes
/
.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
{
"preset": "node-style-guide",
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"disallowTrailingComma": true,
"disallowSpacesInFunction": null,
"disallowMultipleLineBreaks": true,
"requireCapitalizedComments": null,
"requireCapitalizedConstructors": true,
"requireParenthesesAroundIIFE": true,
"requireTrailingComma": null,
"requireSpaceAfterLineComment": null,
"disallowMultipleVarDecl": null,
"maximumLineLength": 80,
"requireSpaceAfterKeywords": [
"do",
"for",
"if",
"else",
"switch",
"case",
"try",
"catch",
"void",
"while",
"with",
"return",
"typeof",
"function"
],
"requireLineBreakAfterVariableAssignment" : true,
"validateIndentation": 2
}