forked from andreypopp/cssobjectify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.jscsrc
45 lines (45 loc) · 1.3 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
43
44
45
{
"disallowEmptyBlocks": true,
"disallowImplicitTypeConversion": ["string"],
"disallowKeywords": ["with"],
"disallowKeywordsOnNewLine": ["else"],
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineBreaks": true,
"disallowQuotedKeysInObjects": true,
"disallowSpaceAfterPrefixUnaryOperators": true,
"esnext": true, // uses jscs-dev/esprima-harmony
"excludeFiles": [],
"requireCapitalizedConstructors": true,
"requireCurlyBraces": ["for", "while", "do", "try", "catch"],
"requireDotNotation": true,
"requireMatchingFunctionName": true,
"requirePaddingNewLinesAfterBlocks": true,
"requirePaddingNewLinesBeforeExport": true,
"requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
"requirePaddingNewlinesBeforeKeywords": [
"do",
"for",
"if",
"switch",
"default",
"case",
"try",
"catch",
"void",
"while",
"with"
],
"requireSpaceBeforeObjectValues": true,
"requireSpacesInAnonymousFunctionExpression": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
"requireSpacesInFunctionDeclaration": {
"beforeOpeningCurlyBrace": true
},
"requireSpacesInFunction": {
"beforeOpeningCurlyBrace": true
},
"validateIndentation": 2,
"validateParameterSeparator": ", "
}