diff --git a/ROADMAP.md b/ROADMAP.md index 214dcda..edbda2c 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -83,7 +83,7 @@ - [ ] "no-await-in-loop" - [ ] "no-bitwise" - [ ] "no-buffer-constructor" -- [ ] "no-caller" +- [X] "no-caller" - [ ] "no-case-declarations" - [X] "no-catch-shadow" - [ ] "no-class-assign" diff --git a/src/rules/default.json b/src/rules/default.json index d4b96c7..05db158 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -200,6 +200,9 @@ "no-alert": [ "warn" ], + "no-caller": [ + "error" + ], "no-catch-shadow": [ "off" ],