From 2ff93f71db5667bf89e2fa3f3085b48b09068f37 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 21 Jul 2019 21:29:06 +0300 Subject: [PATCH] Disable no-submodule-imports tslint inspection --- tslint.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tslint.json b/tslint.json index 069a11c8..5de5cf89 100644 --- a/tslint.json +++ b/tslint.json @@ -7,7 +7,7 @@ "rules": { "no-var-requires": false, "object-literal-sort-keys": false, - "max-classes-per-file": [false], + "max-classes-per-file": false, "prefer-conditional-expression": false, "prefer-object-spread": false, "forin": false, @@ -21,6 +21,7 @@ }, "no-bitwise": false, "interface-over-type-literal": false, - "interface-name": false + "interface-name": false, + "no-submodule-imports": false } }