From 228ce628a4058603e40917e46404fe985cc65b3c Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 22:42:08 +0400 Subject: [PATCH] feat(eslint): Rule "no-extra-semi" Signed-off-by: Valentin Popov --- ROADMAP.md | 2 +- src/rules/default.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ROADMAP.md b/ROADMAP.md index 95e798a..de2aba2 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -118,7 +118,7 @@ - [ ] "no-extra-boolean-cast" - [ ] "no-extra-label" - [ ] "no-extra-parens" -- [ ] "no-extra-semi" +- [X] "no-extra-semi" - [ ] "no-fallthrough" - [ ] "no-floating-decimal" - [ ] "no-func-assign" diff --git a/src/rules/default.json b/src/rules/default.json index ee9a2f6..70a6913 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -121,6 +121,9 @@ "allowIndirect": false } ], + "no-extra-semi": [ + "error" + ], "no-multi-spaces": [ "error", {