-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.jscsrc
More file actions
33 lines (32 loc) · 682 Bytes
/
.jscsrc
File metadata and controls
33 lines (32 loc) · 682 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
26
27
28
29
30
31
32
33
{
"esnext": true,
"preset": "google",
"requireSemicolons": false,
"fileExtensions": [
".js",
".jsx"
],
"requireCurlyBraces": true,
"requireParenthesesAroundIIFE": true,
"maximumLineLength": 120,
"validateLineBreaks": "LF",
"validateIndentation": 2,
"validateQuoteMarks": {
"mark": "'",
"escape": true,
"ignoreJSX": true
},
"disallowKeywords": [
"with"
],
"disallowSpacesInsideObjectBrackets": null,
"disallowImplicitTypeConversion": [
"string"
],
"safeContextKeyword": "that",
"excludeFiles": [
"dist/**",
"node_modules/**"
],
"requireCamelCaseOrUpperCaseIdentifiers": {"allExcept": ["access_token"]}
}