@willbooster/eslint-config-js-react 11.0.3 → 11.2.0

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-js-react \
8
8
  eslint \
9
+ eslint-config-flat-gitignore \
9
10
  eslint-config-prettier \
10
11
  eslint-plugin-import-x \
11
12
  eslint-plugin-prettier \
package/eslint.config.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import jsConfig from '@willbooster/eslint-config-js';
2
+ import eslintConfigFlatGitignore from 'eslint-config-flat-gitignore';
2
3
  import eslintConfigPrettier from 'eslint-config-prettier';
3
4
  import eslintPluginReact from 'eslint-plugin-react';
4
5
  import eslintPluginReactHooks from 'eslint-plugin-react-hooks';
@@ -37,6 +38,7 @@ export default [
37
38
  'react/prop-types': 'off',
38
39
  },
39
40
  },
41
+ eslintConfigFlatGitignore(),
40
42
  // cf. https://github.com/prettier/eslint-config-prettier#installation
41
43
  eslintConfigPrettier,
42
44
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@willbooster/eslint-config-js-react",
3
- "version": "11.0.3",
3
+ "version": "11.2.0",
4
4
  "description": "A ESLint flat config for JavaScript projects using React",
5
5
  "license": "Apache-2.0",
6
6
  "author": "WillBooster Inc.",
@@ -19,30 +19,32 @@
19
19
  },
20
20
  "prettier": "@willbooster/prettier-config",
21
21
  "dependencies": {
22
- "@willbooster/eslint-config-js": "11.0.3"
22
+ "@willbooster/eslint-config-js": "11.2.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@eslint/js": "9.21.0",
25
+ "@eslint/js": "9.23.0",
26
26
  "@willbooster/prettier-config": "10.0.0",
27
- "eslint": "9.21.0",
28
- "eslint-config-prettier": "10.0.2",
29
- "eslint-plugin-import-x": "4.6.1",
27
+ "eslint": "9.23.0",
28
+ "eslint-config-flat-gitignore": "2.1.0",
29
+ "eslint-config-prettier": "10.1.1",
30
+ "eslint-plugin-import-x": "4.9.3",
30
31
  "eslint-plugin-react": "7.37.4",
31
32
  "eslint-plugin-react-hooks": "5.2.0",
32
33
  "eslint-plugin-sort-class-members": "1.21.0",
33
34
  "eslint-plugin-sort-destructure-keys": "2.0.0",
34
- "eslint-plugin-unicorn": "57.0.0",
35
+ "eslint-plugin-unicorn": "58.0.0",
35
36
  "eslint-plugin-unused-imports": "4.1.4",
36
37
  "globals": "16.0.0",
37
- "lint-staged": "15.4.3",
38
+ "lint-staged": "15.5.0",
38
39
  "micromatch": "4.0.8",
39
40
  "prettier": "3.5.3",
40
- "react": "19.0.0",
41
+ "react": "19.1.0",
41
42
  "sort-package-json": "3.0.0"
42
43
  },
43
44
  "peerDependencies": {
44
45
  "@eslint/js": ">=9",
45
46
  "eslint": ">=9",
47
+ "eslint-config-flat-gitignore": ">=2.1",
46
48
  "eslint-config-prettier": ">=10",
47
49
  "eslint-plugin-import-x": ">=4",
48
50
  "eslint-plugin-react": ">=7",