diff options
| author | Max Isom <[email protected]> | 2021-12-03 10:36:06 -0500 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2021-12-03 10:36:06 -0500 |
| commit | 70a55e9a2e8df91d2e4dc0792a17d9b48f6f20d0 (patch) | |
| tree | 263baa92138a5bf74ffc183210af0168fcb9c3b1 /package.json | |
| parent | b52f9253c2a905642a01e510bc91dadeb0db419a (diff) | |
| download | muse-70a55e9a2e8df91d2e4dc0792a17d9b48f6f20d0.tar.xz muse-70a55e9a2e8df91d2e4dc0792a17d9b48f6f20d0.zip | |
Disable @typescript-eslint/no-implicit-any-catch
(Strict mode in TS 4.4 enables useUnknownInCatchVariables, so this is redundant.)
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index 79235d3..beedf29 100644 --- a/package.json +++ b/package.json @@ -63,7 +63,8 @@ "new-cap": "off", "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-unused-vars-experimental": "error", - "@typescript-eslint/prefer-readonly-parameter-types": "off" + "@typescript-eslint/prefer-readonly-parameter-types": "off", + "@typescript-eslint/no-implicit-any-catch": "off" } }, "husky": { |
