Skip to content

Commit

Permalink
use 9.15.0 again
Browse files Browse the repository at this point in the history
  • Loading branch information
asanehisa committed Nov 25, 2024
1 parent 661ff9f commit 21b7f1e
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 77 deletions.
14 changes: 8 additions & 6 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,7 @@ const compat = new FlatCompat({

export default [
{
ignores: [
"**/dist",
"packages/pages/tests/fixtures",
"playground/locations-site",
"playground/multibrand-site",
],
ignores: ["**/dist", "packages/pages/tests/fixtures", "playground/**"],
},
...compat.extends(
"eslint:recommended",
Expand Down Expand Up @@ -66,6 +61,13 @@ export default [
"@typescript-eslint/no-non-null-assertion": "off",
"import/extensions": ["error", "ignorePackages"],
"react/no-deprecated": "off",
"@typescript-eslint/no-unused-expressions": [
"error",
{
allowShortCircuit: true,
allowTernary: true,
},
],
},
},
];
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "9.14.0",
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.48.2",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
Expand All @@ -46,7 +46,7 @@
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "9.14.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
Expand Down
Loading

0 comments on commit 21b7f1e

Please sign in to comment.