This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
.jscsrc
40 lines (40 loc) · 1.42 KB
/
.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
37
38
39
40
{
"excludeFiles": [
".bem/cache/**",
".enb/tmp/**",
".git/**",
"*.docs/**",
"*.examples/**",
"*.specs/**",
"*.tmpl-specs/**",
"*.tests/**",
"*.bundles/**",
"**/*.i18n/**",
"libs/**",
".libs-cache/**",
".libs-registry/**",
".libs-tmp/**",
"node_modules/**"
],
"fileExtensions": [".js", ".bemtree", ".bemhtml"],
"requireSpaceAfterKeywords": ["do", "else"],
"disallowSpaceAfterKeywords": ["if", "for", "while", "switch"],
"disallowSpacesInFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"disallowSpacesInsideArrayBrackets": true,
"requireSpacesInsideObjectBrackets": "all",
"requireSpaceAfterObjectKeys": true,
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowSpaceBeforeBinaryOperators": [","],
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "&&", "||"],
"requireSpaceAfterBinaryOperators": [",", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<=", "&&", "||"],
"disallowKeywords": ["with"],
"disallowKeywordsOnNewLine": ["else"],
"requireLineFeedAtFileEnd": true,
"validateJSDoc": {
"checkParamNames": true,
"requireParamTypes": true
}
}