diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 21:42:08 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 21:42:18 +0300 |
commit | 228ce628a4058603e40917e46404fe985cc65b3c (patch) | |
tree | 4d40e238bb74819c06069272e70fd486bc9c3075 | |
parent | 7ecc10853dac4302e2fffb29df4c24d095075343 (diff) | |
download | eslint-config-228ce628a4058603e40917e46404fe985cc65b3c.tar.xz eslint-config-228ce628a4058603e40917e46404fe985cc65b3c.zip |
feat(eslint): Rule "no-extra-semi"
Signed-off-by: Valentin Popov <info@valentineus.link>
-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", { |