diff --git a/packages/frontend/eslint.config.js b/packages/frontend/eslint.config.js index 26ee288523..a5381e14e3 100644 --- a/packages/frontend/eslint.config.js +++ b/packages/frontend/eslint.config.js @@ -164,6 +164,12 @@ export default [ 'vue/attribute-hyphenation': ['error', 'never'], }, }, + { + files: ['src/**/*.stories.ts'], + rules: { + 'no-restricted-globals': 'off', + } + }, { ignores: [ "**/lib/", diff --git a/packages/shared/eslint.config.js b/packages/shared/eslint.config.js index 295829e374..bb3d6277da 100644 --- a/packages/shared/eslint.config.js +++ b/packages/shared/eslint.config.js @@ -44,4 +44,10 @@ export default [ 'no-param-reassign': 'off', }, }, + { + files: ['src/**/*.stories.ts'], + rules: { + 'no-restricted-globals': 'off', + } + }, ];