Skip to content

Commit b544400

Browse files
update deps
1 parent b766d0f commit b544400

File tree

9 files changed

+766
-578
lines changed

9 files changed

+766
-578
lines changed

.eslintrc.json

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,16 @@
5151
"error",
5252
"global"
5353
],
54-
"@typescript-eslint/ban-types": [
55-
"error",
56-
{
57-
"types": {
58-
"Function": false
59-
}
60-
}
61-
],
54+
"@typescript-eslint/no-unsafe-function-type": "off",
6255
"@typescript-eslint/no-unsafe-member-access": "off",
6356
"@typescript-eslint/no-unsafe-assignment": "off",
6457
"@typescript-eslint/no-unsafe-return": "off",
6558
"@typescript-eslint/no-unsafe-argument": "off",
6659
"@typescript-eslint/no-unsafe-call": "off",
6760
"@typescript-eslint/no-unsafe-enum-comparison": "off",
61+
// Note: you must disable the base rule as it can report incorrect errors
62+
"no-unused-expressions": "off",
63+
"@typescript-eslint/no-unused-expressions": "off",
6864
"@typescript-eslint/consistent-type-imports": [
6965
"error",
7066
{
@@ -92,4 +88,4 @@
9288
}
9389
}
9490
]
95-
}
91+
}

0 commit comments

Comments
 (0)