2020-04-02 13:41:06 +00:00
|
|
|
module.exports = {
|
2022-05-05 03:02:50 +00:00
|
|
|
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ],
|
2023-03-01 22:36:38 +00:00
|
|
|
ignorePatterns: [ '**/jest.*' ],
|
2020-04-02 13:41:06 +00:00
|
|
|
env: {
|
|
|
|
'jest/globals': true,
|
|
|
|
},
|
|
|
|
globals: {
|
|
|
|
page: true,
|
|
|
|
browser: true,
|
|
|
|
context: true,
|
|
|
|
jestPuppeteer: true,
|
|
|
|
},
|
|
|
|
plugins: [ 'jest' ],
|
|
|
|
};
|