mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-24 05:02:24 +08:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
|
const error = 2;
|
||
|
const warn = 1;
|
||
|
const ignore = 0;
|
||
|
|
||
|
module.exports = {
|
||
|
rules: {
|
||
|
'import/no-unresolved': ignore,
|
||
|
'import/extensions': ignore,
|
||
|
},
|
||
|
};
|