forked from fb55/htmlparser2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jscsrc
30 lines (24 loc) · 1.19 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
{
"requireCurlyBraces": ["do", "switch", "return", "try", "catch"],
"requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="],
"requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="],
"requireSpaceAfterKeywords": ["else", "do", "switch", "return", "try"],
"disallowSpaceAfterKeywords": ["if", "catch", "for", "while"],
"disallowSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true },
"requireCapitalizedConstructors": true,
"requireCommaBeforeLineBreak": true,
"requireDotNotation": true,
"requireParenthesesAroundIIFE": true,
"disallowEmptyBlocks": true,
"disallowSpaceAfterPrefixUnaryOperators": ["!"],
"disallowSpaceBeforeBinaryOperators": [","],
"disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"],
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
"disallowKeywords": ["with"],
"disallowMultipleLineStrings": true,
"disallowTrailingWhitespace": true,
"validateIndentation": "\t",
"validateLineBreaks": "LF",
"validateQuoteMarks": "\"",
"safeContextKeyword": "_this"
}