mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 00:02:15 +08:00
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
const error = 2;
|
|
const warn = 1;
|
|
const ignore = 0;
|
|
|
|
module.exports = {
|
|
rules: {
|
|
'import/no-unresolved': ignore,
|
|
'import/no-extraneous-dependencies': ignore,
|
|
'import/extensions': ignore,
|
|
'global-require': ignore,
|
|
}
|
|
};
|