Browse Source

ignore type params in eslint indent rule

Alexander Rose 5 years ago
parent
commit
53dbd1aedf
1 changed files with 5 additions and 2 deletions
  1. 5 2
      .eslintrc.json

+ 5 - 2
.eslintrc.json

@@ -16,7 +16,10 @@
         "@typescript-eslint/class-name-casing": "off",
         "@typescript-eslint/indent": [
             "warn",
-            4
+            4,
+            {
+                "ignoredNodes": ["TSTypeParameterInstantiation"]
+            }
         ],
         "@typescript-eslint/member-delimiter-style": [
             "off",
@@ -35,7 +38,7 @@
         "@typescript-eslint/quotes": [
             "warn",
             "single",
-            { 
+            {
                 "avoidEscape": true,
                 "allowTemplateLiterals": true
             }