From 39319a01979e44709f4480fce6cc9f2df81b5ce1 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 10 May 2020 16:30:33 +0900 Subject: [PATCH] chore(lint): Add semicolon rule --- tslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 6316d5435..e0ca176f6 100644 --- a/tslint.json +++ b/tslint.json @@ -64,7 +64,8 @@ "no-hardcoded-credentials": false, "no-nested-switch": false, "unified-signatures": false, - "no-all-duplicated-branches": false + "no-all-duplicated-branches": false, + "semicolon": [true, "always"] }, "rulesDirectory": [] }