Skip to content

Commit bbfb4ea

Browse files
committed
chore: Update eslint & fix linting errors
1 parent c3dca11 commit bbfb4ea

4 files changed

Lines changed: 493 additions & 491 deletions

File tree

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ module.exports = {
1818
},
1919
{
2020
...tsConfig,
21+
// "prettier/@typescript-eslint" was merged into "prettier" in eslint-config-prettier v8
22+
extends: [...(tsConfig.extends || []).filter((e) => e !== "prettier/@typescript-eslint"), "prettier"],
2123
files: ["*.ts"],
2224
rules: {
2325
...tsConfig.rules,
@@ -28,6 +30,7 @@ module.exports = {
2830
"@typescript-eslint/no-unsafe-call": "off",
2931
"@typescript-eslint/no-unsafe-member-access": "off",
3032
"@typescript-eslint/no-unsafe-return": "off",
33+
"@typescript-eslint/no-unsafe-argument": "off",
3134
"@typescript-eslint/no-var-requires": "off",
3235
"@typescript-eslint/restrict-template-expressions": "off",
3336
},

0 commit comments

Comments
 (0)