@theholocron/eslint-config 3.5.1 → 4.1.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/index.js +3 -6
- package/package.json +18 -10
package/index.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export default eslintConfig;
|
|
6
|
-
export { theHolocronCypress, theHolocronStorybook };
|
|
1
|
+
export { default as cypress } from "./cypress.eslint.config.js"
|
|
2
|
+
export { default as holocron } from "./eslint.config.js";
|
|
3
|
+
export { default as storybook } from "./storybook.eslint.config.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "A ESLint configuration for writing well-formed Javascript within the Galaxy.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/configs/tree/main/packages/eslint-config#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/configs/issues",
|
|
@@ -17,15 +17,23 @@
|
|
|
17
17
|
"eslint.config.js",
|
|
18
18
|
"storybook.eslint.config.js"
|
|
19
19
|
],
|
|
20
|
-
"
|
|
21
|
-
"@eslint/compat": "^1
|
|
22
|
-
"@eslint/js": "^9
|
|
23
|
-
"eslint": "^9
|
|
24
|
-
"eslint-plugin-cypress": "^
|
|
25
|
-
"eslint-plugin-react": "^7
|
|
26
|
-
"eslint-plugin-storybook": "^
|
|
27
|
-
"globals": "^
|
|
28
|
-
"typescript-eslint": "^8
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@eslint/compat": "^1",
|
|
22
|
+
"@eslint/js": "^9",
|
|
23
|
+
"eslint": "^9",
|
|
24
|
+
"eslint-plugin-cypress": "^5",
|
|
25
|
+
"eslint-plugin-react": "^7",
|
|
26
|
+
"eslint-plugin-storybook": "^9",
|
|
27
|
+
"globals": "^16",
|
|
28
|
+
"typescript-eslint": "^8"
|
|
29
|
+
},
|
|
30
|
+
"peerDependenciesMeta": {
|
|
31
|
+
"eslint-plugin-cypress": {
|
|
32
|
+
"optional": true
|
|
33
|
+
},
|
|
34
|
+
"eslint-plugin-storybook": {
|
|
35
|
+
"optional": true
|
|
36
|
+
}
|
|
29
37
|
},
|
|
30
38
|
"publishConfig": {
|
|
31
39
|
"access": "public"
|