13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
|
module.exports = {
|
||
|
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
|
||
|
root: true,
|
||
|
overrides: [
|
||
|
{
|
||
|
files: [ '**/*.js', '**/*.jsx', '**/*.tsx' ],
|
||
|
rules: {
|
||
|
'react/react-in-jsx-scope': 'off',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|