From c01210d4fecf812a6a72b26f077401b8a1dd73a8 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": [] }