woocommerce-paypal-payments/.eslintrc
carmenmaymo 800bf1b766
Fix js lint
some rules suppressed to avoid changing implementation
2025-04-14 14:37:16 +02:00

15 lines
281 B
Text

{
"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ],
"env": {
"browser": true,
"jest": true
},
"globals": {
"wc": true,
"jQuery": "readonly",
"ppcpSwitchSettingsUi": "readonly"
},
"rules": {
"no-console": ["error", { "allow": ["warn", "error"] }]
}
}