Skip to content

Commit

Permalink
Update typescript and eslint
Browse files Browse the repository at this point in the history
We were getting some errors that I didn't really know how to fix, but
considering the warnings about them being outdated, and updating them
fixing it, it does seem like this was the right call.
  • Loading branch information
Zarel committed Dec 16, 2023
1 parent 256fe20 commit 2355507
Show file tree
Hide file tree
Showing 4 changed files with 1,389 additions and 1,139 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@
// disable additional typescript-eslint 3.0 defaults
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
Expand All @@ -224,9 +225,9 @@
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
"@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/no-parameter-properties": "error",
"@typescript-eslint/no-this-alias": "error",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/parameter-properties": "error",
"@typescript-eslint/prefer-as-const": "error",
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/prefer-function-type": "error",
Expand Down
Loading

0 comments on commit 2355507

Please sign in to comment.