Skip to content

Commit fb39b75

Browse files
authored
Bump eslint package to support typescript new version (#2088)
1 parent 98fba3a commit fb39b75

File tree

3 files changed

+525
-216
lines changed

3 files changed

+525
-216
lines changed

.eslintrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ module.exports = {
4848
},
4949
],
5050
"@typescript-eslint/lines-between-class-members": "off",
51+
"@typescript-eslint/no-base-to-string": "off",
5152
"@typescript-eslint/no-empty-function": "off",
5253
"@typescript-eslint/no-explicit-any": "off",
5354
"@typescript-eslint/no-inferrable-types": [
@@ -59,12 +60,17 @@ module.exports = {
5960
],
6061
"@typescript-eslint/no-misused-promises": "off",
6162
"@typescript-eslint/no-namespace": "off",
63+
"@typescript-eslint/no-redundant-type-constituents": "off",
6264
"@typescript-eslint/no-shadow": "off",
6365
"@typescript-eslint/no-unnecessary-type-assertion": "off",
66+
"@typescript-eslint/no-unnecessary-type-constraint": "off",
67+
"@typescript-eslint/no-unsafe-argument": "off",
6468
"@typescript-eslint/no-unsafe-assignment": "off",
6569
"@typescript-eslint/no-unsafe-call": "off",
70+
"@typescript-eslint/no-unsafe-enum-comparison": "off",
6671
"@typescript-eslint/no-unsafe-member-access": "off",
6772
"@typescript-eslint/no-unsafe-return": "off",
73+
"@typescript-eslint/no-unused-vars": "warn",
6874
"@typescript-eslint/no-use-before-define": [
6975
// function hoisting is a common, accepted pattern
7076
"error",

0 commit comments

Comments
 (0)