| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "rules": {
- "class-name": true,
- "curly": false,
- "eofline": false,
- "forin": false,
- "indent": [true, 4],
- "label-position": true,
- "label-undefined": true,
- "max-line-length": false,
- "no-arg": true,
- "no-bitwise": false,
- "no-console": [true,
- "debug",
- "info",
- "time",
- "timeEnd",
- "trace"
- ],
- "no-construct": true,
- "no-debugger": true,
- "no-duplicate-key": true,
- "no-duplicate-variable": true,
- "no-empty": false,
- "no-eval": true,
- "no-imports": true,
- "no-string-literal": false,
- "no-trailing-comma": true,
- "no-trailing-whitespace": true,
- "no-unused-variable": false,
- "no-unreachable": true,
- "no-use-before-declare": false,
- "one-line": [true,
- "check-open-brace",
- "check-catch",
- "check-whitespace"
- ],
- "quotemark": [true, "double"],
- "radix": false,
- "semicolon": true,
- "triple-equals": [false, "allow-null-check"],
- "variable-name": false,
- "whitespace": [true,
- "check-branch",
- "check-decl",
- "check-operator",
- "check-separator"
- ]
- }
- }
|