forked from google/material-design-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jscsrc
More file actions
25 lines (25 loc) · 675 Bytes
/
.jscsrc
File metadata and controls
25 lines (25 loc) · 675 Bytes
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
{
"preset": "google",
"esnext": true,
"disallowSpacesInAnonymousFunctionExpression": null,
"validateLineBreaks": "LF",
"validateIndentation": 2,
"excludeFiles": ["node_modules/**"],
"maximumLineLength": 130,
"validateQuoteMarks": "'",
"requireDotNotation": false,
"requireCamelCaseOrUpperCaseIdentifiers": null,
"additionalRules": ["./utils/jscs-rules/*.js", "../utils/jscs-rules/*.js"],
"closureCamelCase": true,
"jsDoc": {
"checkAnnotations": {
"preset": "closurecompiler",
"extra": {
"type": true,
"suppress": true
}
},
"checkTypes": "strictNativeCase",
"enforceExistence": "exceptExports"
}
}