2020-06-06 23:44:44 +00:00
|
|
|
module.exports = {
|
2022-10-12 02:05:01 +00:00
|
|
|
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
|
|
|
|
plugins: [ 'jest' ],
|
|
|
|
root: true,
|
2020-06-06 23:44:44 +00:00
|
|
|
rules: {
|
2022-10-12 02:05:01 +00:00
|
|
|
// These warning rules are stop gaps for eslint issues that need to be fixed later.
|
|
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
2020-06-06 23:44:44 +00:00
|
|
|
},
|
2021-11-05 12:43:46 +00:00
|
|
|
};
|