Files
Shifted/node_modules/storybook/.eslintrc.cjs
2026-02-10 01:14:19 +00:00

32 lines
643 B
JavaScript

module.exports = {
overrides: [
{
files: 'templates/**/*',
env: {
browser: true,
},
rules: {
'react/no-this-in-sfc': "off",
'react/react-in-jsx-scope': "off",
'global-require': "off",
'no-redeclare': "off",
'react/prop-types': "off",
},
},
{
files: 'rendererAssets/**/*',
env: {
browser: true,
},
rules: {
'jsx-a11y/anchor-is-valid': "off",
'react/prop-types': "off",
'react/react-in-jsx-scope': "off",
'import/extensions': "off",
'import/named': "off",
},
},
],
};