| OLD | NEW |
| 1 { | 1 { |
| 2 "rules": { | 2 "rules": { |
| 3 "class-name": true, | 3 "class-name": true, |
| 4 "comment-format": [true, "check-space"], | 4 "comment-format": [true, "check-space"], |
| 5 "eofline": true, | 5 "eofline": true, |
| 6 "forin": true, | 6 "forin": true, |
| 7 "indent": [true, "spaces"], | 7 "indent": [true, "spaces"], |
| 8 "jsdoc-format": true, | 8 "jsdoc-format": true, |
| 9 "label-position": true, | 9 "label-position": true, |
| 10 "no-arg": true, | 10 "no-arg": true, |
| 11 "no-conditional-assignment": true, | 11 "no-conditional-assignment": true, |
| 12 "no-construct": true, | 12 "no-construct": true, |
| 13 "no-debugger": true, | 13 "no-debugger": true, |
| 14 "no-duplicate-variable": true, | 14 "no-duplicate-variable": true, |
| 15 "no-empty": true, | 15 "no-empty": true, |
| 16 "no-inferrable-types": true, | 16 "no-inferrable-types": true, |
| 17 "no-internal-module": true, | 17 "no-internal-module": true, |
| 18 "no-shadowed-variable": true, | 18 "no-shadowed-variable": true, |
| 19 "no-switch-case-fall-through": true, | 19 "no-switch-case-fall-through": true, |
| 20 "no-trailing-whitespace": true, | 20 "no-trailing-whitespace": true, |
| 21 "no-unused-expression": true, | 21 "no-unused-expression": true, |
| 22 "no-use-before-declare": true, | 22 "no-use-before-declare": true, |
| 23 "no-var-keyword": true, | 23 "no-var-keyword": true, |
| 24 "quotemark": [true, "single"], | 24 "quotemark": [true, "single"], |
| 25 "radix": true, | 25 "radix": true, |
| 26 "semicolon": [true, "always"], | 26 "semicolon": [true, "always"], |
| 27 "switch-default": true, | 27 "switch-default": true, |
| 28 "triple-equals": [true, "allow-null-check"], | 28 "triple-equals": [true, "allow-null-check"], |
| 29 "variable-name": [true, "check-format", "ban-keywords"] | 29 "variable-name": [true, "check-format", "ban-keywords", "allow-leading-under
score"] |
| 30 } | 30 } |
| 31 } | 31 } |
| OLD | NEW |