mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-24 01:00:35 +08:00
20 lines
330 B
Text
20 lines
330 B
Text
{
|
|
"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ],
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"globals": {
|
|
"wc": true,
|
|
"jQuery": "readonly"
|
|
},
|
|
"rules": {
|
|
"no-console": ["error", { "allow": ["warn", "error"] }]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"webpack": {
|
|
"config": "./webpack.config.js"
|
|
}
|
|
}
|
|
}
|
|
}
|