|
| 1 | +{ |
| 2 | + "disallowEmptyBlocks": true, |
| 3 | + "disallowKeywords": [ |
| 4 | + "with" |
| 5 | + ], |
| 6 | + "disallowKeywordsOnNewLine": [ |
| 7 | + "else" |
| 8 | + ], |
| 9 | + "disallowMixedSpacesAndTabs": true, |
| 10 | + "disallowMultipleLineBreaks": true, |
| 11 | + "disallowNewlineBeforeBlockStatements": true, |
| 12 | + "disallowPaddingNewlinesInBlocks": true, |
| 13 | + "disallowQuotedKeysInObjects": true, |
| 14 | + "disallowSpaceAfterObjectKeys": true, |
| 15 | + "disallowSpaceAfterPrefixUnaryOperators": true, |
| 16 | + "disallowSpaceBeforeBinaryOperators": [ |
| 17 | + ], |
| 18 | + "disallowSpaceBeforePostfixUnaryOperators": true, |
| 19 | + "disallowSpacesInFunctionDeclaration": { |
| 20 | + "beforeOpeningRoundBrace": true |
| 21 | + }, |
| 22 | + "disallowSpacesInNamedFunctionExpression": { |
| 23 | + "beforeOpeningRoundBrace": true |
| 24 | + }, |
| 25 | + "disallowSpacesInsideArrayBrackets": true, |
| 26 | + "disallowSpacesInsideObjectBrackets": "all", |
| 27 | + "disallowSpacesInsideParentheses": true, |
| 28 | + "disallowTrailingComma": true, |
| 29 | + "disallowTrailingWhitespace": true, |
| 30 | + "disallowYodaConditions": true, |
| 31 | + "requireBlocksOnNewline": 1, |
| 32 | + "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties", |
| 33 | + "requireCapitalizedConstructors": true, |
| 34 | + "requireCommaBeforeLineBreak": true, |
| 35 | + "requireCurlyBraces": [ |
| 36 | + "if", |
| 37 | + "else", |
| 38 | + "for", |
| 39 | + "while", |
| 40 | + "do", |
| 41 | + "try", |
| 42 | + "catch" |
| 43 | + ], |
| 44 | + "requireDotNotation": true, |
| 45 | + "requireLineFeedAtFileEnd": true, |
| 46 | + "requireParenthesesAroundIIFE": true, |
| 47 | + "requireSpaceAfterBinaryOperators": true, |
| 48 | + "requireSpaceAfterKeywords": [ |
| 49 | + "else", |
| 50 | + "for", |
| 51 | + "while", |
| 52 | + "do", |
| 53 | + "switch", |
| 54 | + "case", |
| 55 | + "return", |
| 56 | + "try", |
| 57 | + "function", |
| 58 | + "typeof" |
| 59 | + ], |
| 60 | + "requireSpaceAfterLineComment": "allowSlash", |
| 61 | + "requireSpaceBeforeBinaryOperators": true, |
| 62 | + "requireSpaceBeforeBlockStatements": true, |
| 63 | + "requireSpacesInAnonymousFunctionExpression": { |
| 64 | + "beforeOpeningRoundBrace": true |
| 65 | + }, |
| 66 | + "requireSpacesInConditionalExpression": true, |
| 67 | + "safeContextKeyword": [ |
| 68 | + "self" |
| 69 | + ], |
| 70 | + "validateIndentation": 4, |
| 71 | + "validateQuoteMarks": "'", |
| 72 | + "esnext": true |
| 73 | +} |
| 74 | + |
0 commit comments