diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -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", { |