|
| 1 | +{ |
| 2 | + "disallowEmptyBlocks": true, |
| 3 | + "disallowKeywords": ["with"], |
| 4 | + "disallowMixedSpacesAndTabs": true, |
| 5 | + "disallowMultipleLineStrings": true, |
| 6 | + "disallowSpaceAfterPrefixUnaryOperators": ["++", "--", "+", "-", "~", "!"], |
| 7 | + "disallowSpaceBeforePostfixUnaryOperators": ["++", "--"], |
| 8 | + "disallowTrailingWhitespace": true, |
| 9 | + "requireCamelCaseOrUpperCaseIdentifiers": true, |
| 10 | + "disallowSpaceBeforeBinaryOperators": [","], |
| 11 | + "requireLineFeedAtFileEnd": true, |
| 12 | + "requireSpaceAfterBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="], |
| 13 | + "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"], |
| 14 | + "requireSpaceBeforeBinaryOperators": ["+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", "<", ">=", "<="], |
| 15 | + "requireSpacesInConditionalExpression": true, |
| 16 | + "requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true }, |
| 17 | + "validateIndentation": 4, |
| 18 | + "validateLineBreaks": "LF", |
| 19 | + "validateQuoteMarks": "'" |
| 20 | +} |
0 commit comments