Skip to content

Commit

Permalink
Bump ESLint dependencies (#1592)
Browse files Browse the repository at this point in the history
* Bump ESLint and related dependencies

* Deduplicate dependencies

* Disable new lint rules

A temporary measure to limit conflicts due to rapid development period.
  • Loading branch information
RichDom2185 authored Mar 22, 2024
1 parent 5c1c86b commit 7db94b5
Show file tree
Hide file tree
Showing 3 changed files with 325 additions and 340 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
"simple-import-sort"
],
"rules": {
"@typescript-eslint/no-unsafe-argument": "off", // TODO: Remove
"@typescript-eslint/no-unsafe-enum-comparison": "off", // TODO: Remove
"@typescript-eslint/no-base-to-string": "off", // TODO: Remove
"@typescript-eslint/no-redundant-type-constituents": "off", // TODO: Remove
"@typescript-eslint/no-duplicate-type-constituents": "off", // TODO: Remove
"prefer-const": "off", // TODO: Remove
"no-var": "off", // TODO: Remove
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/camelcase": "off",
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@
"@types/lodash": "^4.14.202",
"@types/node": "^20.0.0",
"@types/offscreencanvas": "^2019.7.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"ace-builds": "^1.4.12",
"coveralls": "^3.1.0",
"escodegen": "^2.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^8.0.1",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
Expand Down
Loading

0 comments on commit 7db94b5

Please sign in to comment.