2022-03-28 10:39:16 +00:00
|
|
|
module.exports = {
|
2022-04-26 23:16:35 +00:00
|
|
|
extends: [
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
'plugin:@woocommerce/eslint-plugin/recommended',
|
|
|
|
],
|
2022-03-28 10:39:16 +00:00
|
|
|
root: true,
|
2024-07-08 06:39:39 +00:00
|
|
|
settings: {
|
|
|
|
'import/core-modules': [ '@woocommerce/e2e-utils' ],
|
|
|
|
'import/resolver': {
|
|
|
|
node: {},
|
|
|
|
typescript: {},
|
|
|
|
},
|
|
|
|
},
|
2022-03-28 10:39:16 +00:00
|
|
|
};
|