UNPKG

581 BJSONView Raw
1{
2 "disallowMixedSpacesAndTabs": true,
3 "disallowTrailingWhitespace": true,
4 "validateLineBreaks": "LF",
5 "validateIndentation": 4,
6 "requireLineFeedAtFileEnd": true,
7
8 "disallowSpaceAfterPrefixUnaryOperators": true,
9 "disallowSpaceBeforePostfixUnaryOperators": true,
10 "requireSpaceAfterLineComment": true,
11 "requireCapitalizedConstructors": true,
12
13 "disallowSpacesInNamedFunctionExpression": {
14 "beforeOpeningRoundBrace": true
15 },
16
17 "requireSpaceAfterKeywords": [
18 "if",
19 "else",
20 "for",
21 "while",
22 "do"
23 ]
24}