-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.jscsrc
More file actions
23 lines (22 loc) · 760 Bytes
/
.jscsrc
File metadata and controls
23 lines (22 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
// More info about this preset:
// https://github.com/jscs-dev/node-jscs/blob/master/presets/node-style-guide.json
// Info. about the rules can be found here: http://jscs.info/rules
"preset": "node-style-guide",
"requireSemicolons": true,
"requireParenthesesAroundIIFE": true,
"maximumLineLength": 16000,
"validateLineBreaks": null,
"validateIndentation": 4,
"disallowTrailingComma": true,
"disallowUnusedParams": false,
"requireTrailingComma": false,
"disallowMultipleVarDecl": false,
"disallowSpacesInsideObjectBrackets": null,
"disallowImplicitTypeConversion": ["string"],
"disallowSpacesInFunction": null,
"excludeFiles": [
"public/apidoc/**",
"node_modules/**"
]
}