forked from hammerjs/hammer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscsrc
37 lines (36 loc) · 1.32 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
{
"requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
"requireSpaceAfterKeywords": ["else", "return"],
"disallowSpaceAfterKeywords": ["if", "for", "while", "do", "switch", "try", "catch"],
"disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"disallowRightStickedOperators": ["?", "+", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
"requireRightStickedOperators": ["!"],
"requireLeftStickedOperators": [","],
"disallowImplicitTypeConversion": ["string"],
"disallowKeywords": ["with"],
"disallowMultipleLineBreaks": true,
"disallowKeywordsOnNewLine": ["else"],
"disallowMixedSpacesAndTabs": true,
"disallowTrailingWhitespace": true,
"disallowQuotedKeysInObjects": "allButReserved",
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireSpacesInFunctionExpression": {
"beforeOpeningCurlyBrace": true
},
"disallowSpacesInFunctionExpression": {
"beforeOpeningRoundBrace": true
},
"validateJSDoc": {
"checkParamNames": true,
"requireParamTypes": true
},
"validateIndentation": 4,
"validateQuoteMarks": "'",
"excludeFiles": [
"*.js",
"tests/**",
"docs/**",
"misc/**",
"node_modules/**"
]
}