diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -113,7 +113,7 @@ - [ ] "no-eq-null" - [X] "no-eval" - [ ] "no-ex-assign" -- [ ] "no-extend-native" +- [X] "no-extend-native" - [ ] "no-extra-bind" - [ ] "no-extra-boolean-cast" - [ ] "no-extra-label" diff --git a/src/rules/default.json b/src/rules/default.json index 7c2564c..8750343 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -236,6 +236,9 @@ "allowIndirect": false } ], + "no-extend-native": [ + "error" + ], "no-extra-semi": [ "error" ], |