Skip to content

Commit

Permalink
Bump eslint package to support typescript new version (#2088)
Browse files Browse the repository at this point in the history
  • Loading branch information
EzioLi01 committed Dec 27, 2023
1 parent 98fba3a commit fb39b75
Show file tree
Hide file tree
Showing 3 changed files with 525 additions and 216 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ module.exports = {
},
],
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": [
Expand All @@ -59,12 +60,17 @@ module.exports = {
],
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/no-unnecessary-type-assertion": "off",
"@typescript-eslint/no-unnecessary-type-constraint": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-enum-comparison": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-use-before-define": [
// function hoisting is a common, accepted pattern
"error",
Expand Down

0 comments on commit fb39b75

Please sign in to comment.