18 lines
343 B
JavaScript
18 lines
343 B
JavaScript
module.exports = {
|
|
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
|
|
overrides: [
|
|
{
|
|
files: [ '**/*.js', '**/*.ts', '**/*.jsx', '**/*.tsx' ],
|
|
rules: {
|
|
'react/react-in-jsx-scope': 'off',
|
|
'@wordpress/i18n-text-domain': [
|
|
'error',
|
|
{
|
|
allowedTextDomain: [ 'mailpoet' ],
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
};
|