@mikey-pro/eslint-config-react 9.0.4 → 9.0.6

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/README.md +0 -38
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config-react",
3
- "version": "9.0.4",
3
+ "version": "9.0.6",
4
4
  "description": "Mikey Pro ESLint React configuration - Ultimate React coding style guide",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
- "@babel/preset-react": "^7.28.0",
9
- "@mikey-pro/eslint-config": "^9.0.0",
8
+ "@babel/preset-react": "^7.27.1",
9
+ "@mikey-pro/eslint-config": "^9.0.6",
10
10
  "eslint-config-react-app-bump": "^1.0.25",
11
11
  "eslint-plugin-jest-dom": "^5.5.0",
12
12
  "eslint-plugin-jsx-a11y": "^6.10.2",
@@ -17,7 +17,7 @@
17
17
  "eslint-plugin-testing-library": "^7.6.8"
18
18
  },
19
19
  "peerDependencies": {
20
- "@mikey-pro/eslint-config": "^9.0.0"
20
+ "@mikey-pro/eslint-config": "^9.0.6"
21
21
  },
22
22
  "peerDependenciesMeta": {
23
23
  "@types/react": {
package/README.md DELETED
@@ -1,38 +0,0 @@
1
- <div width="100%" align="center">
2
- <h1>
3
- <a href="https://github.com/chiefmikey/mikey-pro">
4
- <b>Mikey Pro</b>
5
- </a>
6
- </h1>
7
- </div>
8
-
9
- ## **@mikey-pro/eslint-config-react**
10
-
11
- A preset ESLint React configuration
12
-
13
- ## Usage
14
-
15
- ### Install
16
-
17
- ```shell
18
- npm i -D mikey-pro @mikey-pro/eslint-config-react
19
- ```
20
-
21
- ### Configure (Flat ESLint v9+ Recommended)
22
-
23
- ```js
24
- // eslint.config.js
25
- import reactConfig from '@mikey-pro/eslint-config-react/flat';
26
-
27
- export default reactConfig;
28
- ```
29
-
30
- ### Legacy Configuration (still supported)
31
-
32
- ```json
33
- {
34
- "eslintConfig": {
35
- "extends": ["@mikey-pro/eslint-config-react"]
36
- }
37
- }
38
- ```