-
Notifications
You must be signed in to change notification settings - Fork 107
/
.jscsrc
28 lines (28 loc) · 816 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
{
"preset": "airbnb",
"esnext": true,
"verbose": true,
"disallowCapitalizedComments": true,
"disallowMultipleLineBreaks": true,
"disallowMultipleSpaces": true,
"disallowSemicolons": true,
"disallowSpacesInAnonymousFunctionExpression": null,
"disallowSpacesInFunctionExpression": null,
"disallowYodaConditions": null,
"requireCamelCaseOrUpperCaseIdentifiers": null,
"requirePaddingNewLinesAfterUseStrict": true,
"requireSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
"safeContextKeyword": ["self", "doc", "ctx"],
"validateIndentation": 2,
"plugins": [
"jscs-jsdoc"
],
"jsDoc": {
"checkAnnotations": "closurecompiler",
"checkTypes": "strictNativeCase",
"enforceExistence": "exceptExports"
}
}