forked from MrSwitch/hello.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscsrc
42 lines (42 loc) · 1.15 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
41
42
{
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
"validateIndentation": "\t",
"disallowMultipleSpaces": true,
"disallowQuotedKeysInObjects": "allButReserved",
"disallowSpaceAfterObjectKeys": true,
"disallowSpacesInCallExpression": true,
"disallowSpacesInsideArrayBrackets": true,
"disallowSpacesInsideBrackets": true,
"disallowSpacesInsideObjectBrackets": true,
"disallowSpacesInsideParentheses": true,
"disallowTrailingComma": true,
"disallowTrailingWhitespace": true,
"requireCapitalizedComments": true,
"requireDotNotation": true,
"requireKeywordsOnNewLine": ["else", "catch"],
"requireSemicolons": true,
"requireSpaceAfterBinaryOperators": true,
"requireSpaceAfterKeywords": [
"do",
"for",
"if",
"else",
"switch",
"case",
"try",
"catch",
"void",
"while",
"with",
"return",
"typeof",
"xfunction"
],
"requireSpaceBeforeBlockStatements": true,
"requireSpaceBetweenArguments": true,
"requireSpacesInConditionalExpression": true,
"requireSpacesInForStatement": true,
"validateParameterSeparator": ", ",
"validateQuoteMarks": "'"
}