18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'plugin:@woocommerce/eslint-plugin/recommended',
|
|
'plugin:xstate/all',
|
|
],
|
|
plugins: [ 'xstate' ],
|
|
root: true,
|
|
overrides: [
|
|
{
|
|
files: [ 'client/**/*.js', 'client/**/*.jsx', 'client/**/*.tsx' ],
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
'@typescript-eslint/no-use-before-define': 'warn',
|
|
},
|
|
},
|
|
],
|
|
};
|