diff --git a/.eslintrc.json b/.eslintrc.json
index bd27efce3c624234b83a897d7f20a0242b2c9e8a..63e78508fd800165b538ceb45c927dbbb2dd7a6e 100644
--- a/.eslintrc.json
+++ b/.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
             }