diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-19 13:14:01 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-19 13:14:01 +0300 |
commit | 99f00817e0c27f51699505eaeac1951776b42d73 (patch) | |
tree | 5dfb52c33c5e7785c5b6fffe0116a4f3f06336d4 /src | |
parent | 621602e88b756b9c2e716ade5baea7f44cfc31b8 (diff) | |
download | eslint-config-99f00817e0c27f51699505eaeac1951776b42d73.tar.xz eslint-config-99f00817e0c27f51699505eaeac1951776b42d73.zip |
feat(typescript): no-extra-semi
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r-- | src/rules/typescript/default.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index c98552b..0c029f1 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -49,6 +49,9 @@ "ignoreRestArgs": false } ], + "@typescript-eslint/no-extra-semi": [ + "error" + ], "@typescript-eslint/no-implied-eval": [ "error" ], @@ -184,6 +187,9 @@ "indent": [ "off" ], + "no-extra-semi": [ + "off" + ], "no-implied-eval": [ "off" ], |