summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/frontend/eslint.config.js6
-rw-r--r--packages/shared/eslint.config.js6
2 files changed, 12 insertions, 0 deletions
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
@@ -165,6 +165,12 @@ export default [
},
},
{
+ files: ['src/**/*.stories.ts'],
+ rules: {
+ 'no-restricted-globals': 'off',
+ }
+ },
+ {
ignores: [
"**/lib/",
"**/temp/",
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',
+ }
+ },
];