|
| 1 | +{ |
| 2 | + // comment |
| 3 | + /* comment */ |
| 4 | + "rules": { |
| 5 | + "ban": [true, |
| 6 | + ["_", "extend"], |
| 7 | + ["_", "isNull"], |
| 8 | + ["_", "isDefined"] |
| 9 | + ], |
| 10 | + "class-name": true, |
| 11 | + "comment-format": [true, |
| 12 | + "check-space", |
| 13 | + "check-lowercase" |
| 14 | + ], |
| 15 | + "curly": true, |
| 16 | + "eofline": true, |
| 17 | + "forin": true, |
| 18 | + "indent": [true, 4], |
| 19 | + "interface-name": true, |
| 20 | + "jsdoc-format": true, |
| 21 | + "label-position": true, |
| 22 | + "label-undefined": true, |
| 23 | + "max-line-length": [true, 140], |
| 24 | + "no-arg": true, |
| 25 | + "no-bitwise": true, |
| 26 | + "no-console": [true, |
| 27 | + "debug", |
| 28 | + "info", |
| 29 | + "time", |
| 30 | + "timeEnd", |
| 31 | + "trace" |
| 32 | + ], |
| 33 | + "no-construct": true, |
| 34 | + "no-debugger": true, |
| 35 | + "no-duplicate-key": true, |
| 36 | + "no-duplicate-variable": true, |
| 37 | + "no-empty": true, |
| 38 | + "no-eval": true, |
| 39 | + "no-string-literal": true, |
| 40 | + "trailing-comma": [true, { |
| 41 | + "singleline": "never", |
| 42 | + "multiline": "always" |
| 43 | + }], |
| 44 | + "no-trailing-whitespace": true, |
| 45 | + "no-unused-expression": true, |
| 46 | + "no-unused-variable": true, |
| 47 | + "no-unreachable": true, |
| 48 | + "no-use-before-declare": true, |
| 49 | + "one-line": [true, |
| 50 | + "check-open-brace", |
| 51 | + "check-catch", |
| 52 | + "check-else", |
| 53 | + "check-whitespace" |
| 54 | + ], |
| 55 | + "quotemark": [true, "double"], |
| 56 | + "radix": true, |
| 57 | + "semicolon": true, |
| 58 | + "triple-equals": [true, "allow-null-check"], |
| 59 | + "typedef": [true, |
| 60 | + "callSignature", |
| 61 | + "catchClause", |
| 62 | + "indexSignature", |
| 63 | + "parameter", |
| 64 | + "propertySignature", |
| 65 | + "variableDeclarator" |
| 66 | + ], |
| 67 | + "typedef-whitespace": [true, |
| 68 | + ["callSignature", "noSpace"], |
| 69 | + ["catchClause", "noSpace"], |
| 70 | + ["indexSignature", "space"] |
| 71 | + ], |
| 72 | + "use-strict": [true, |
| 73 | + "check-module", |
| 74 | + "check-function" |
| 75 | + ], |
| 76 | + "variable-name": false, |
| 77 | + "whitespace": [true, |
| 78 | + "check-branch", |
| 79 | + "check-decl", |
| 80 | + "check-operator", |
| 81 | + "check-separator", |
| 82 | + "check-type" |
| 83 | + ] |
| 84 | + } |
| 85 | +} |
0 commit comments