@lomray/eslint-config-react 5.0.5 → 5.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.
- package/index.js +0 -2
- package/package.json +1 -2
- package/configs/react-hooks.js +0 -11
package/index.js
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import baseConfig from '@lomray/eslint-config';
|
|
2
2
|
import react from './configs/react.js';
|
|
3
|
-
import reactHooks from './configs/react-hooks.js';
|
|
4
3
|
import jsx from './configs/jsx-a11y.js';
|
|
5
4
|
import base from './configs/base.js';
|
|
6
5
|
|
|
7
6
|
const reactConfig = [
|
|
8
7
|
base,
|
|
9
8
|
react,
|
|
10
|
-
reactHooks,
|
|
11
9
|
jsx,
|
|
12
10
|
];
|
|
13
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lomray/eslint-config-react",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"description": "This package provides Lomray eslint config as an extensible shared config for React.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"@lomray/eslint-config": "^5.0.3",
|
|
29
29
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
30
30
|
"eslint-plugin-react": "^7.33.2",
|
|
31
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
32
31
|
"globals": "^14.0.0"
|
|
33
32
|
}
|
|
34
33
|
}
|
package/configs/react-hooks.js
DELETED