From 50a06b02ba8548c633ba5c3f3e38f827419d4c45 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 13 Feb 2020 18:27:45 +0400 Subject: feat(typescript): Rule "semi" Signed-off-by: Valentin Popov --- src/rules/typescript/default.json | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/rules') diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index 216245a..4504f4e 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -7,7 +7,17 @@ "avoidEscape": false } ], + "@typescript-eslint/semi": [ + "error", + "always", + { + "omitLastInOneLineBlock": false + } + ], "quotes": [ "off" + ], + "semi": [ + "off" ] } -- cgit v1.2.3