mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
26 lines
489 B
JavaScript
26 lines
489 B
JavaScript
const ignore = 0;
|
|
|
|
module.exports = {
|
|
overrides: [
|
|
{
|
|
files: '*/template[-?]*/**',
|
|
env: {
|
|
browser: true,
|
|
},
|
|
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,
|
|
},
|
|
},
|
|
{
|
|
files: 'REACT_NATIVE/template/**',
|
|
env: {
|
|
browser: false,
|
|
},
|
|
},
|
|
],
|
|
};
|