-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscsrc
31 lines (29 loc) · 826 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
{
// 添加diy检查规则
"additionalRules" : [
".jscs_rules/*.js"
],
"disallowNaiveIdentifiers": "ignoreProperties",
"disallowNativeDate": "ignoreProperties",
"maximumLineLength" : {
"value" : 115,
"tabSize" : 2,
"allowComments" : true,
"allowUrlComments" : true,
"allowRegex" : true
},
"requireSpacesInConditionalExpression" : {
"afterTest" : true,
"beforeConsequent" : true,
"afterConsequent" : true,
"beforeAlternate" : true
},
"requireSpacesInForStatement" : true,
"validateParameterSeparator": ", ",
"requireSpaceBetweenArguments": true,
"requireSpacesInConditionalExpression": true,
"disallowTrailingWhitespace" : true,
"disallowTrailingComma": true,
"validateIndentation" : "\t",
"requirePaddingNewLineAfterVariableDeclaration": true
}