forked from nextcloud/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscsrc
36 lines (32 loc) · 888 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
33
34
35
36
{
"preset": "google",
"fileExtensions": [".js", "jscs"],
"requireParenthesesAroundIIFE": true,
"disallowMultipleVarDecl": "strict",
"maximumLineLength": 120,
"validateLineBreaks": "LF",
"validateIndentation": "\t",
"disallowKeywords": ["with"],
"disallowSpacesInsideObjectBrackets": null,
"disallowImplicitTypeConversion": ["string"],
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"safeContextKeyword": "_this",
"excludeFiles": [
"node_modules/",
"vendor/",
".git/",
"l10n/",
],
"jsDoc": {
"checkAnnotations": {
"preset": "jsdoc3",
"extra": {
"copyright": true,
"file": true,
"overview": true,
"fileoverview": true,
"private": true
}
}
}
}