projects
/
GitHub
/
WoltLab
/
WCF.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdcfed3
)
Disable eslint rules disallowing `any` to be used
author
Tim Düsterhus
<duesterhus@woltlab.com>
Fri, 30 Oct 2020 10:02:34 +0000
(11:02 +0100)
committer
Tim Düsterhus
<duesterhus@woltlab.com>
Fri, 30 Oct 2020 11:26:17 +0000
(12:26 +0100)
.eslintrc.js
patch
|
blob
|
blame
|
history
diff --git
a/.eslintrc.js
b/.eslintrc.js
index e1f7b93bce21a2dca6efd47b5e2aa96af96ef5c5..65070d272f9be5b2213f2ec8f4325d9a28c937b7 100644
(file)
--- a/
.eslintrc.js
+++ b/
.eslintrc.js
@@
-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,
}
};