mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
17 lines
339 B
JavaScript
17 lines
339 B
JavaScript
const ignore = 0;
|
|
|
|
module.exports = {
|
|
overrides: [
|
|
{
|
|
files: '*/template/**',
|
|
rules: {
|
|
'react/no-this-in-sfc': ignore,
|
|
'import/no-unresolved': ignore,
|
|
'import/no-extraneous-dependencies': ignore,
|
|
'global-require': ignore,
|
|
'react/react-in-jsx-scope': ignore,
|
|
},
|
|
},
|
|
],
|
|
};
|