-
Notifications
You must be signed in to change notification settings - Fork 1
/
.jscs.js
64 lines (64 loc) · 2.22 KB
/
.jscs.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
module.exports = {
excludeFiles: [
'node_modules',
'.*',
'test',
'coverage'
],
'requireCurlyBraces': ['if', 'else', 'for', 'while', 'do'],
'requireSpaceAfterKeywords': ['do', 'else'],
'disallowSpaceAfterKeywords': ['if', 'for', 'while', 'switch'],
'disallowSpacesInFunction': {
'beforeOpeningRoundBrace': true
},
'requireParenthesesAroundIIFE': true,
'disallowSpacesInsideArrayBrackets': true,
'disallowSpacesInsideObjectBrackets': true,
'disallowSpaceAfterObjectKeys': true,
'requireSpaceBeforeObjectValues': true,
'disallowSpaceAfterPrefixUnaryOperators': ['++', '--', '+', '-', '~', '!'],
'disallowSpaceBeforePostfixUnaryOperators': ['++', '--'],
'disallowSpaceBeforeBinaryOperators': [','],
'requireSpaceBeforeBinaryOperators': ['+', '-', '/', '*', '=', '==', '===', '!=', '!==', '>', '>=', '<', '<=', '&&', '||'],
'requireSpaceAfterBinaryOperators': [',', '+', '-', '/', '*', '=', '==', '===', '!=', '!==', '>', '>=', '<', '<=', '&&', '||'],
'requireSpaceBeforeBlockStatements': true,
'disallowKeywords': ['with'],
'disallowMultipleLineBreaks': true,
'disallowTrailingWhitespace': true,
'disallowKeywordsOnNewLine': ['else'],
'requireCapitalizedConstructors': true,
'requireLineFeedAtFileEnd': true,
'disallowTrailingComma': true,
'requireSpacesInConditionalExpression': {
'afterTest': true,
'beforeConsequent': true,
'afterConsequent': true,
'beforeAlternate': true
},
'validateQuoteMarks': {
mark: '\'',
escape: true
},
requireSpaceAfterLineComment: { 'allExcept': ['#', '=', '/'] },
jsDoc: {
checkAnnotations: {
preset: 'jsdoc3',
extra: {
block: true,
mod: true,
val: true,
final: false,
override: false
}
},
checkParamNames: true,
requireParamTypes: true,
checkRedundantParams: true,
checkReturnTypes: true,
checkRedundantReturns: true,
requireReturnTypes: true,
checkTypes: 'capitalizedNativeCase',
leadingUnderscoreAccess: true
},
maxErrors: 1000
};