|
1 | 1 | {
|
2 | 2 | "requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
|
3 | 3 | "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
|
4 |
| - "disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], |
5 |
| - "disallowRightStickedOperators": ["?", "+", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], |
6 |
| - "requireRightStickedOperators": ["!"], |
7 |
| - "requireLeftStickedOperators": [","], |
| 4 | + "requireSpaceBeforeBinaryOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], |
| 5 | + "requireSpaceAfterBinaryOperators": ["?", "+", "-", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="], |
8 | 6 | "disallowImplicitTypeConversion": ["string"],
|
9 | 7 | "disallowKeywords": ["with"],
|
10 | 8 | "disallowMultipleLineBreaks": true,
|
11 | 9 | "disallowMixedSpacesAndTabs": true,
|
| 10 | + "disallowSpaceBeforeBinaryOperators": [","], |
| 11 | + "disallowSpaceAfterPrefixUnaryOperators": ["!"], |
12 | 12 | "disallowTrailingWhitespace": true,
|
13 | 13 | "requireLineFeedAtFileEnd": true,
|
14 | 14 | "excludeFiles": [],
|
|
0 commit comments