eslint-config-agent 1.4.4 → 1.4.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/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. See [Conven
4
4
 
5
5
 
6
6
 
7
+ ## [1.4.6](https://github.com/tupe12334/eslint-config/compare/v1.4.5...v1.4.6) (2025-09-30)
8
+
9
+ ### Bug Fixes
10
+
11
+ * update storybookConfig to be an array and spread into main config ([b6de10e](https://github.com/tupe12334/eslint-config/commit/b6de10efcbdb1deff790e4be8c37f432217b23bd))
12
+
13
+ ## [1.4.5](https://github.com/tupe12334/eslint-config/compare/v1.4.4...v1.4.5) (2025-09-30)
14
+
15
+ ### Bug Fixes
16
+
17
+ * restore eslint-plugin-required-exports dependency in package.json and pnpm-lock.yaml ([a937603](https://github.com/tupe12334/eslint-config/commit/a9376031562f77b5854824e95bc825fae7c93eb5))
18
+
7
19
  ## [1.4.4](https://github.com/tupe12334/eslint-config/compare/v1.4.3...v1.4.4) (2025-09-30)
8
20
 
9
21
  ### Features
@@ -8,7 +8,7 @@
8
8
  import globals from "globals";
9
9
  import { plugins } from "../plugins/index.js";
10
10
 
11
- export const storybookConfig = {
11
+ export const storybookConfig = [{
12
12
  files: ["**/*.stories.{js,jsx,ts,tsx}"],
13
13
  languageOptions: {
14
14
  globals: {
@@ -23,4 +23,4 @@ export const storybookConfig = {
23
23
  // Enable recommended storybook rules only
24
24
  ...plugins.storybook.configs.recommended.rules,
25
25
  },
26
- };
26
+ }];
package/index.js CHANGED
@@ -644,7 +644,7 @@ const config = [
644
644
 
645
645
 
646
646
  // Storybook files configuration
647
- storybookConfig,
647
+ ...storybookConfig,
648
648
 
649
649
  // Rules directory configuration - allow export specifiers for API definitions (but not examples)
650
650
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-agent",
3
- "version": "1.4.4",
3
+ "version": "1.4.6",
4
4
  "description": "ESLint configuration package with TypeScript support",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -105,7 +105,6 @@
105
105
  "eslint-plugin-preact": "^0.1.0",
106
106
  "eslint-plugin-react": "^7.37.5",
107
107
  "eslint-plugin-react-hooks": "^5.2.0",
108
- "eslint-plugin-required-exports": "^0.2.0",
109
108
  "eslint-plugin-security": "^3.0.1",
110
109
  "eslint-plugin-storybook": "^9.1.5",
111
110
  "globals": "^16.3.0",
@@ -116,6 +115,7 @@
116
115
  "eslint-plugin-default": "^1.1.0",
117
116
  "eslint-plugin-error": "^1.1.3",
118
117
  "eslint-plugin-no-optional-chaining": "^1.0.0",
118
+ "eslint-plugin-required-exports": "^0.2.0",
119
119
  "eslint-plugin-single-export": "^1.1.2"
120
120
  }
121
121
  }