diff options
author | Valentin Popov <info@valentineus.link> | 2020-03-26 19:43:49 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-03-26 19:43:49 +0300 |
commit | 5d9c8c8b4e0874b0acb3a63159040e994b511887 (patch) | |
tree | 5bc7c76973a7352681e7b95e26f4f43f3212122f /src | |
parent | 3c922848220e0e86145121ab5564b1afce163343 (diff) | |
download | eslint-config-5d9c8c8b4e0874b0acb3a63159040e994b511887.tar.xz eslint-config-5d9c8c8b4e0874b0acb3a63159040e994b511887.zip |
fix(typescript): no-explicit-any
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r-- | src/rules/typescript/default.json | 2 |
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 } ], |