aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-03-26 19:43:49 +0300
committerValentin Popov <info@valentineus.link>2020-03-26 19:43:49 +0300
commit5d9c8c8b4e0874b0acb3a63159040e994b511887 (patch)
tree5bc7c76973a7352681e7b95e26f4f43f3212122f
parent3c922848220e0e86145121ab5564b1afce163343 (diff)
downloadeslint-config-5d9c8c8b4e0874b0acb3a63159040e994b511887.tar.xz
eslint-config-5d9c8c8b4e0874b0acb3a63159040e994b511887.zip
fix(typescript): no-explicit-any
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--src/rules/typescript/default.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json
index a580318..fe556bc 100644
--- a/src/rules/typescript/default.json
+++ b/src/rules/typescript/default.json
@@ -80,7 +80,7 @@
"@typescript-eslint/no-explicit-any": [
"warn",
{
- "fixToUnknown": false,
+ "fixToUnknown": true,
"ignoreRestArgs": false
}
],