mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
12 lines
231 B
JavaScript
12 lines
231 B
JavaScript
const ignore = 0;
|
|
|
|
module.exports = {
|
|
rules: {
|
|
'import/no-unresolved': ignore,
|
|
'import/no-extraneous-dependencies': ignore,
|
|
'import/extensions': ignore,
|
|
'global-require': ignore,
|
|
'no-console': ignore,
|
|
},
|
|
};
|