mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 12:36:57 +00:00
exclude storybook components from restricted globals rule
This commit is contained in:
parent
f9c1535147
commit
33b9f998da
2 changed files with 12 additions and 0 deletions
|
@ -164,6 +164,12 @@ export default [
|
||||||
'vue/attribute-hyphenation': ['error', 'never'],
|
'vue/attribute-hyphenation': ['error', 'never'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
files: ['src/**/*.stories.ts'],
|
||||||
|
rules: {
|
||||||
|
'no-restricted-globals': 'off',
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
ignores: [
|
ignores: [
|
||||||
"**/lib/",
|
"**/lib/",
|
||||||
|
|
|
@ -44,4 +44,10 @@ export default [
|
||||||
'no-param-reassign': 'off',
|
'no-param-reassign': 'off',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
files: ['src/**/*.stories.ts'],
|
||||||
|
rules: {
|
||||||
|
'no-restricted-globals': 'off',
|
||||||
|
}
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Reference in a new issue