From 10942c95266e9d46bcf0c52a578bbfe3016d950b Mon Sep 17 00:00:00 2001 From: Resi Respati Date: Wed, 22 Nov 2017 15:55:38 +0700 Subject: [PATCH] [tslint] Fixed `interface-name` rule declaration --- tslint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 465bae6..15d37c2 100644 --- a/tslint.json +++ b/tslint.json @@ -4,7 +4,7 @@ ], "rules": { "forin": false, - "interface-name": ["never-prefix"], + "interface-name": [true, "never-prefix"], "no-console": [false], "no-namespace": [true, "allow-declarations"], "trailing-comma": [true, {"multiline": "never", "singleline": "never"}],