Disable eslint rules disallowing `any` to be used
authorTim Düsterhus <duesterhus@woltlab.com>
Fri, 30 Oct 2020 10:02:34 +0000 (11:02 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Fri, 30 Oct 2020 11:26:17 +0000 (12:26 +0100)
.eslintrc.js

index e1f7b93bce21a2dca6efd47b5e2aa96af96ef5c5..65070d272f9be5b2213f2ec8f4325d9a28c937b7 100644 (file)
@@ -14,6 +14,11 @@ module.exports = {
     "prettier/@typescript-eslint"
   ],
   rules: {
-    "@typescript-eslint/no-non-null-assertion": 0
+    "@typescript-eslint/no-explicit-any": 0,
+    "@typescript-eslint/no-non-null-assertion": 0,
+    "@typescript-eslint/no-unsafe-assignment": 0,
+    "@typescript-eslint/no-unsafe-call": 0,
+    "@typescript-eslint/no-unsafe-member-access": 0,
+    "@typescript-eslint/no-unsafe-return": 0,
   }
 };