-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscsrc
31 lines (29 loc) · 773 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
{
"preset": "google",
"requireParenthesesAroundIIFE": true,
"validateIndentation": "\t",
"disallowKeywords": ["with"],
"validateQuoteMarks": null,
"requireLineFeedAtFileEnd": null,
"disallowImplicitTypeConversion": null,
"validateJSDoc": null,
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": null,
"maximumLineLength": 255,
"excludeFiles": [
"Jakefile.js",
"node_modules/**",
"tests/**",
"tools/**",
"**/*.min.js",
"**/*.dev.js",
"js/tinymce/*.js",
"js/tinymce/langs/**",
"js/tinymce/plugins/compat3x/**",
"js/tinymce/plugins/table/plugin.js",
"js/tinymce/plugins/spellchecker/plugin.js",
"js/tinymce/plugins/paste/plugin.js",
"js/tinymce/classes/dom/Sizzle.js",
"js/tinymce/classes/util/Promise.js"
]
}