From c3df8b2213f087bd880d371eb9fa53a3a6123819 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 16:02:53 +0400 Subject: feat(eslint): Rule "no-debugger" Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/eslint.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index 6bcc625..ec25ed2 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -96,7 +96,7 @@ - [ ] "no-constructor-return" - [ ] "no-continue" - [ ] "no-control-regex" -- [ ] "no-debugger" +- [X] "no-debugger" - [ ] "no-delete-var" - [ ] "no-div-regex" - [ ] "no-dupe-args" diff --git a/src/rules/eslint.json b/src/rules/eslint.json index 1065842..d08f852 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -66,6 +66,9 @@ "allow": [] } ], + "no-debugger": [ + "error" + ], "no-multi-spaces": [ "error", { -- cgit v1.2.3