Add comprehensive development roadmap via GitHub Issues
Created 10 detailed GitHub issues covering: - Project activation and management UI (#1-2) - Worker node coordination and visualization (#3-4) - Automated GitHub repository scanning (#5) - Intelligent model-to-issue matching (#6) - Multi-model task execution system (#7) - N8N workflow integration (#8) - Hive-Bzzz P2P bridge (#9) - Peer assistance protocol (#10) Each issue includes detailed specifications, acceptance criteria, technical implementation notes, and dependency mapping. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
28
frontend/node_modules/eslint-plugin-storybook/dist/configs/addon-interactions.d.ts
generated
vendored
Normal file
28
frontend/node_modules/eslint-plugin-storybook/dist/configs/addon-interactions.d.ts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
declare const _default: {
|
||||
plugins: string[];
|
||||
overrides: ({
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/await-interactions': "error";
|
||||
readonly 'storybook/context-in-play-function': "error";
|
||||
readonly 'storybook/use-storybook-expect': "error";
|
||||
readonly 'storybook/use-storybook-testing-library': "error";
|
||||
readonly 'storybook/no-uninstalled-addons'?: undefined;
|
||||
};
|
||||
} | {
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'storybook/no-uninstalled-addons': "error";
|
||||
readonly 'react-hooks/rules-of-hooks'?: undefined;
|
||||
readonly 'import/no-anonymous-default-export'?: undefined;
|
||||
readonly 'storybook/await-interactions'?: undefined;
|
||||
readonly 'storybook/context-in-play-function'?: undefined;
|
||||
readonly 'storybook/use-storybook-expect'?: undefined;
|
||||
readonly 'storybook/use-storybook-testing-library'?: undefined;
|
||||
};
|
||||
})[];
|
||||
};
|
||||
|
||||
export { _default as default };
|
||||
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/addon-interactions.js
generated
vendored
Normal file
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/addon-interactions.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";module.exports={plugins:["storybook"],overrides:[{files:["**/*.stories.@(ts|tsx|js|jsx|mjs|cjs)","**/*.story.@(ts|tsx|js|jsx|mjs|cjs)"],rules:{"react-hooks/rules-of-hooks":"off","import/no-anonymous-default-export":"off","storybook/await-interactions":"error","storybook/context-in-play-function":"error","storybook/use-storybook-expect":"error","storybook/use-storybook-testing-library":"error"}},{files:[".storybook/main.@(js|cjs|mjs|ts)"],rules:{"storybook/no-uninstalled-addons":"error"}}]};
|
||||
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/addon-interactions.mjs
generated
vendored
Normal file
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/addon-interactions.mjs
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { require_addon_interactions } from '../chunk-56XMJL6J.mjs';
|
||||
import '../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var addonInteractions = require_addon_interactions();
|
||||
|
||||
export { addonInteractions as default };
|
||||
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf-strict.d.ts
generated
vendored
Normal file
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf-strict.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
declare const _default: {
|
||||
extends: string;
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/no-stories-of': "error";
|
||||
readonly 'storybook/no-title-property-in-meta': "error";
|
||||
};
|
||||
};
|
||||
|
||||
export { _default as default };
|
||||
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf-strict.js
generated
vendored
Normal file
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf-strict.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";module.exports={extends:"./configs/csf",rules:{"react-hooks/rules-of-hooks":"off","import/no-anonymous-default-export":"off","storybook/no-stories-of":"error","storybook/no-title-property-in-meta":"error"}};
|
||||
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf-strict.mjs
generated
vendored
Normal file
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf-strict.mjs
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { require_csf_strict } from '../chunk-S2AFJVJN.mjs';
|
||||
import '../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var csfStrict = require_csf_strict();
|
||||
|
||||
export { csfStrict as default };
|
||||
30
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf.d.ts
generated
vendored
Normal file
30
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf.d.ts
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
declare const _default: {
|
||||
plugins: string[];
|
||||
overrides: ({
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/csf-component': "warn";
|
||||
readonly 'storybook/default-exports': "error";
|
||||
readonly 'storybook/hierarchy-separator': "warn";
|
||||
readonly 'storybook/no-redundant-story-name': "warn";
|
||||
readonly 'storybook/story-exports': "error";
|
||||
readonly 'storybook/no-uninstalled-addons'?: undefined;
|
||||
};
|
||||
} | {
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'storybook/no-uninstalled-addons': "error";
|
||||
readonly 'react-hooks/rules-of-hooks'?: undefined;
|
||||
readonly 'import/no-anonymous-default-export'?: undefined;
|
||||
readonly 'storybook/csf-component'?: undefined;
|
||||
readonly 'storybook/default-exports'?: undefined;
|
||||
readonly 'storybook/hierarchy-separator'?: undefined;
|
||||
readonly 'storybook/no-redundant-story-name'?: undefined;
|
||||
readonly 'storybook/story-exports'?: undefined;
|
||||
};
|
||||
})[];
|
||||
};
|
||||
|
||||
export { _default as default };
|
||||
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf.js
generated
vendored
Normal file
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";module.exports={plugins:["storybook"],overrides:[{files:["**/*.stories.@(ts|tsx|js|jsx|mjs|cjs)","**/*.story.@(ts|tsx|js|jsx|mjs|cjs)"],rules:{"react-hooks/rules-of-hooks":"off","import/no-anonymous-default-export":"off","storybook/csf-component":"warn","storybook/default-exports":"error","storybook/hierarchy-separator":"warn","storybook/no-redundant-story-name":"warn","storybook/story-exports":"error"}},{files:[".storybook/main.@(js|cjs|mjs|ts)"],rules:{"storybook/no-uninstalled-addons":"error"}}]};
|
||||
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf.mjs
generated
vendored
Normal file
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/csf.mjs
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { require_csf } from '../chunk-UQUIC47T.mjs';
|
||||
import '../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var csf = require_csf();
|
||||
|
||||
export { csf as default };
|
||||
36
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/addon-interactions.d.ts
generated
vendored
Normal file
36
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/addon-interactions.d.ts
generated
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
declare const _default: ({
|
||||
name: string;
|
||||
plugins: {
|
||||
readonly storybook: any;
|
||||
};
|
||||
files?: undefined;
|
||||
rules?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/await-interactions': "error";
|
||||
readonly 'storybook/context-in-play-function': "error";
|
||||
readonly 'storybook/use-storybook-expect': "error";
|
||||
readonly 'storybook/use-storybook-testing-library': "error";
|
||||
readonly 'storybook/no-uninstalled-addons'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'storybook/no-uninstalled-addons': "error";
|
||||
readonly 'react-hooks/rules-of-hooks'?: undefined;
|
||||
readonly 'import/no-anonymous-default-export'?: undefined;
|
||||
readonly 'storybook/await-interactions'?: undefined;
|
||||
readonly 'storybook/context-in-play-function'?: undefined;
|
||||
readonly 'storybook/use-storybook-expect'?: undefined;
|
||||
readonly 'storybook/use-storybook-testing-library'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
})[];
|
||||
|
||||
export { _default as default };
|
||||
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/addon-interactions.js
generated
vendored
Normal file
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/addon-interactions.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/addon-interactions.mjs
generated
vendored
Normal file
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/addon-interactions.mjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { require_addon_interactions } from '../../chunk-VRJPUALT.mjs';
|
||||
import '../../chunk-WHAAUBWQ.mjs';
|
||||
import '../../chunk-UQUIC47T.mjs';
|
||||
import '../../chunk-S2AFJVJN.mjs';
|
||||
import '../../chunk-56XMJL6J.mjs';
|
||||
import '../../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var addonInteractions = require_addon_interactions();
|
||||
|
||||
export { addonInteractions as default };
|
||||
46
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf-strict.d.ts
generated
vendored
Normal file
46
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf-strict.d.ts
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
declare const _default: ({
|
||||
name: string;
|
||||
plugins: {
|
||||
readonly storybook: any;
|
||||
};
|
||||
files?: undefined;
|
||||
rules?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/csf-component': "warn";
|
||||
readonly 'storybook/default-exports': "error";
|
||||
readonly 'storybook/hierarchy-separator': "warn";
|
||||
readonly 'storybook/no-redundant-story-name': "warn";
|
||||
readonly 'storybook/story-exports': "error";
|
||||
readonly 'storybook/no-uninstalled-addons'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'storybook/no-uninstalled-addons': "error";
|
||||
readonly 'react-hooks/rules-of-hooks'?: undefined;
|
||||
readonly 'import/no-anonymous-default-export'?: undefined;
|
||||
readonly 'storybook/csf-component'?: undefined;
|
||||
readonly 'storybook/default-exports'?: undefined;
|
||||
readonly 'storybook/hierarchy-separator'?: undefined;
|
||||
readonly 'storybook/no-redundant-story-name'?: undefined;
|
||||
readonly 'storybook/story-exports'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/no-stories-of': "error";
|
||||
readonly 'storybook/no-title-property-in-meta': "error";
|
||||
};
|
||||
})[];
|
||||
|
||||
export { _default as default };
|
||||
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf-strict.js
generated
vendored
Normal file
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf-strict.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf-strict.mjs
generated
vendored
Normal file
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf-strict.mjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { require_csf_strict } from '../../chunk-VRJPUALT.mjs';
|
||||
import '../../chunk-WHAAUBWQ.mjs';
|
||||
import '../../chunk-UQUIC47T.mjs';
|
||||
import '../../chunk-S2AFJVJN.mjs';
|
||||
import '../../chunk-56XMJL6J.mjs';
|
||||
import '../../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var csfStrict = require_csf_strict();
|
||||
|
||||
export { csfStrict as default };
|
||||
38
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf.d.ts
generated
vendored
Normal file
38
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf.d.ts
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
declare const _default: ({
|
||||
name: string;
|
||||
plugins: {
|
||||
readonly storybook: any;
|
||||
};
|
||||
files?: undefined;
|
||||
rules?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/csf-component': "warn";
|
||||
readonly 'storybook/default-exports': "error";
|
||||
readonly 'storybook/hierarchy-separator': "warn";
|
||||
readonly 'storybook/no-redundant-story-name': "warn";
|
||||
readonly 'storybook/story-exports': "error";
|
||||
readonly 'storybook/no-uninstalled-addons'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'storybook/no-uninstalled-addons': "error";
|
||||
readonly 'react-hooks/rules-of-hooks'?: undefined;
|
||||
readonly 'import/no-anonymous-default-export'?: undefined;
|
||||
readonly 'storybook/csf-component'?: undefined;
|
||||
readonly 'storybook/default-exports'?: undefined;
|
||||
readonly 'storybook/hierarchy-separator'?: undefined;
|
||||
readonly 'storybook/no-redundant-story-name'?: undefined;
|
||||
readonly 'storybook/story-exports'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
})[];
|
||||
|
||||
export { _default as default };
|
||||
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf.js
generated
vendored
Normal file
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf.mjs
generated
vendored
Normal file
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/csf.mjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { require_csf } from '../../chunk-VRJPUALT.mjs';
|
||||
import '../../chunk-WHAAUBWQ.mjs';
|
||||
import '../../chunk-UQUIC47T.mjs';
|
||||
import '../../chunk-S2AFJVJN.mjs';
|
||||
import '../../chunk-56XMJL6J.mjs';
|
||||
import '../../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var csf = require_csf();
|
||||
|
||||
export { csf as default };
|
||||
48
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/recommended.d.ts
generated
vendored
Normal file
48
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/recommended.d.ts
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
declare const _default: ({
|
||||
name: string;
|
||||
plugins: {
|
||||
readonly storybook: any;
|
||||
};
|
||||
files?: undefined;
|
||||
rules?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/await-interactions': "error";
|
||||
readonly 'storybook/context-in-play-function': "error";
|
||||
readonly 'storybook/default-exports': "error";
|
||||
readonly 'storybook/hierarchy-separator': "warn";
|
||||
readonly 'storybook/no-redundant-story-name': "warn";
|
||||
readonly 'storybook/no-renderer-packages': "error";
|
||||
readonly 'storybook/prefer-pascal-case': "warn";
|
||||
readonly 'storybook/story-exports': "error";
|
||||
readonly 'storybook/use-storybook-expect': "error";
|
||||
readonly 'storybook/use-storybook-testing-library': "error";
|
||||
readonly 'storybook/no-uninstalled-addons'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
} | {
|
||||
name: string;
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'storybook/no-uninstalled-addons': "error";
|
||||
readonly 'react-hooks/rules-of-hooks'?: undefined;
|
||||
readonly 'import/no-anonymous-default-export'?: undefined;
|
||||
readonly 'storybook/await-interactions'?: undefined;
|
||||
readonly 'storybook/context-in-play-function'?: undefined;
|
||||
readonly 'storybook/default-exports'?: undefined;
|
||||
readonly 'storybook/hierarchy-separator'?: undefined;
|
||||
readonly 'storybook/no-redundant-story-name'?: undefined;
|
||||
readonly 'storybook/no-renderer-packages'?: undefined;
|
||||
readonly 'storybook/prefer-pascal-case'?: undefined;
|
||||
readonly 'storybook/story-exports'?: undefined;
|
||||
readonly 'storybook/use-storybook-expect'?: undefined;
|
||||
readonly 'storybook/use-storybook-testing-library'?: undefined;
|
||||
};
|
||||
plugins?: undefined;
|
||||
})[];
|
||||
|
||||
export { _default as default };
|
||||
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/recommended.js
generated
vendored
Normal file
11
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/recommended.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/recommended.mjs
generated
vendored
Normal file
10
frontend/node_modules/eslint-plugin-storybook/dist/configs/flat/recommended.mjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { require_recommended } from '../../chunk-VRJPUALT.mjs';
|
||||
import '../../chunk-WHAAUBWQ.mjs';
|
||||
import '../../chunk-UQUIC47T.mjs';
|
||||
import '../../chunk-S2AFJVJN.mjs';
|
||||
import '../../chunk-56XMJL6J.mjs';
|
||||
import '../../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var recommended = require_recommended();
|
||||
|
||||
export { recommended as default };
|
||||
40
frontend/node_modules/eslint-plugin-storybook/dist/configs/recommended.d.ts
generated
vendored
Normal file
40
frontend/node_modules/eslint-plugin-storybook/dist/configs/recommended.d.ts
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
declare const _default: {
|
||||
plugins: string[];
|
||||
overrides: ({
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'react-hooks/rules-of-hooks': "off";
|
||||
readonly 'import/no-anonymous-default-export': "off";
|
||||
readonly 'storybook/await-interactions': "error";
|
||||
readonly 'storybook/context-in-play-function': "error";
|
||||
readonly 'storybook/default-exports': "error";
|
||||
readonly 'storybook/hierarchy-separator': "warn";
|
||||
readonly 'storybook/no-redundant-story-name': "warn";
|
||||
readonly 'storybook/no-renderer-packages': "error";
|
||||
readonly 'storybook/prefer-pascal-case': "warn";
|
||||
readonly 'storybook/story-exports': "error";
|
||||
readonly 'storybook/use-storybook-expect': "error";
|
||||
readonly 'storybook/use-storybook-testing-library': "error";
|
||||
readonly 'storybook/no-uninstalled-addons'?: undefined;
|
||||
};
|
||||
} | {
|
||||
files: string[];
|
||||
rules: {
|
||||
readonly 'storybook/no-uninstalled-addons': "error";
|
||||
readonly 'react-hooks/rules-of-hooks'?: undefined;
|
||||
readonly 'import/no-anonymous-default-export'?: undefined;
|
||||
readonly 'storybook/await-interactions'?: undefined;
|
||||
readonly 'storybook/context-in-play-function'?: undefined;
|
||||
readonly 'storybook/default-exports'?: undefined;
|
||||
readonly 'storybook/hierarchy-separator'?: undefined;
|
||||
readonly 'storybook/no-redundant-story-name'?: undefined;
|
||||
readonly 'storybook/no-renderer-packages'?: undefined;
|
||||
readonly 'storybook/prefer-pascal-case'?: undefined;
|
||||
readonly 'storybook/story-exports'?: undefined;
|
||||
readonly 'storybook/use-storybook-expect'?: undefined;
|
||||
readonly 'storybook/use-storybook-testing-library'?: undefined;
|
||||
};
|
||||
})[];
|
||||
};
|
||||
|
||||
export { _default as default };
|
||||
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/recommended.js
generated
vendored
Normal file
1
frontend/node_modules/eslint-plugin-storybook/dist/configs/recommended.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";module.exports={plugins:["storybook"],overrides:[{files:["**/*.stories.@(ts|tsx|js|jsx|mjs|cjs)","**/*.story.@(ts|tsx|js|jsx|mjs|cjs)"],rules:{"react-hooks/rules-of-hooks":"off","import/no-anonymous-default-export":"off","storybook/await-interactions":"error","storybook/context-in-play-function":"error","storybook/default-exports":"error","storybook/hierarchy-separator":"warn","storybook/no-redundant-story-name":"warn","storybook/no-renderer-packages":"error","storybook/prefer-pascal-case":"warn","storybook/story-exports":"error","storybook/use-storybook-expect":"error","storybook/use-storybook-testing-library":"error"}},{files:[".storybook/main.@(js|cjs|mjs|ts)"],rules:{"storybook/no-uninstalled-addons":"error"}}]};
|
||||
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/recommended.mjs
generated
vendored
Normal file
6
frontend/node_modules/eslint-plugin-storybook/dist/configs/recommended.mjs
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
import { require_recommended } from '../chunk-WHAAUBWQ.mjs';
|
||||
import '../chunk-5EPSKZG5.mjs';
|
||||
|
||||
var recommended = require_recommended();
|
||||
|
||||
export { recommended as default };
|
||||
Reference in New Issue
Block a user