diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -195,7 +195,7 @@ - [ ] "no-trailing-spaces" - [ ] "no-undef" - [ ] "no-undef-init" -- [ ] "no-undefined" +- [X] "no-undefined" - [X] "no-underscore-dangle" - [ ] "no-unexpected-multiline" - [ ] "no-unmodified-loop-condition" diff --git a/src/rules/default.json b/src/rules/default.json index 16571dc..7e77f6e 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -149,6 +149,9 @@ "no-ternary": [ "off" ], + "no-undefined": [ + "off" + ], "no-underscore-dangle": [ "error", { |