woocommerce/.eslintrc

19 lines
248 B
Plaintext
Raw Normal View History

2018-11-06 20:11:52 +00:00
{
"root": true,
"env": {
"browser": true,
"node": true
},
"globals": {
"wp": true,
"wpApiSettings": true,
"wcSettings": true
},
"rules": {
"camelcase": 0,
"indent": 0,
"max-len": [ 2, { "code": 140 } ],
"no-console": 1
}
}