@willbooster/eslint-config-next 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,6 +6,7 @@ You need to do the following command to install peer dependencies.
6
6
  ```sh
7
7
  yarn add -D @willbooster/eslint-config-next \
8
8
  eslint \
9
+ eslint-config-flat-gitignore \
9
10
  eslint-config-prettier \
10
11
  eslint-plugin-import \
11
12
  eslint-plugin-prettier \
package/eslint.config.js CHANGED
@@ -248,6 +248,7 @@ const config = [
248
248
  ],
249
249
  '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', ignoreRestSiblings: true }], // allow unused vars in object destructuring
250
250
  '@typescript-eslint/no-use-before-define': 'off', // abstract code should appear first
251
+ '@typescript-eslint/restrict-template-expressions': 'off', // Allow any values in template literals
251
252
  },
252
253
  },
253
254
  // cf. https://github.com/sweepline/eslint-plugin-unused-imports#usage
@@ -269,7 +270,6 @@ const config = [
269
270
  ],
270
271
  },
271
272
  },
272
- // Add eslint-config-flat-gitignore before eslintConfigPrettier
273
273
  eslintConfigFlatGitignore(),
274
274
  // cf. https://github.com/prettier/eslint-config-prettier#installation
275
275
  eslintConfigPrettier,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@willbooster/eslint-config-next",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "A ESLint flat config for Next.js",
5
5
  "license": "Apache-2.0",
6
6
  "author": "WillBooster Inc.",
@@ -20,19 +20,19 @@
20
20
  },
21
21
  "prettier": "@willbooster/prettier-config",
22
22
  "devDependencies": {
23
- "@eslint/eslintrc": "3.3.0",
24
- "@eslint/js": "9.22.0",
23
+ "@eslint/eslintrc": "3.3.1",
24
+ "@eslint/js": "9.23.0",
25
25
  "@types/eslint": "9.6.1",
26
26
  "@types/micromatch": "4.0.9",
27
- "@types/node": "22.13.10",
28
- "@types/react": "19.0.10",
27
+ "@types/node": "22.13.11",
28
+ "@types/react": "19.0.12",
29
29
  "@willbooster/prettier-config": "10.0.0",
30
30
  "eslint": "9.21.0",
31
31
  "eslint-config-flat-gitignore": "2.1.0",
32
- "eslint-config-next": "15.2.1",
32
+ "eslint-config-next": "15.2.3",
33
33
  "eslint-config-prettier": "10.1.1",
34
- "eslint-import-resolver-typescript": "3.8.3",
35
- "eslint-plugin-import-x": "4.6.1",
34
+ "eslint-import-resolver-typescript": "4.2.2",
35
+ "eslint-plugin-import-x": "4.9.1",
36
36
  "eslint-plugin-react": "7.37.4",
37
37
  "eslint-plugin-react-hooks": "5.2.0",
38
38
  "eslint-plugin-sort-class-members": "1.21.0",
@@ -40,14 +40,14 @@
40
40
  "eslint-plugin-unicorn": "57.0.0",
41
41
  "eslint-plugin-unused-imports": "4.1.4",
42
42
  "globals": "16.0.0",
43
- "lint-staged": "15.4.3",
43
+ "lint-staged": "15.5.0",
44
44
  "micromatch": "4.0.8",
45
- "next": "15.2.1",
45
+ "next": "15.2.3",
46
46
  "prettier": "3.5.3",
47
47
  "react": "19.0.0",
48
48
  "sort-package-json": "3.0.0",
49
49
  "typescript": "5.8.2",
50
- "typescript-eslint": "8.26.0",
50
+ "typescript-eslint": "8.27.0",
51
51
  "use-immer": "0.11.0"
52
52
  },
53
53
  "peerDependencies": {