liudong
2023-05-29 340f156319b863525e50e900c58e59b86ecb3d5e
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"
}