woocommerce/.eslintrc

23 lines
306 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,
"es6": true
2018-11-06 20:11:52 +00:00
},
"rules": {
"camelcase": 0,
"indent": 0,
"max-len": [ 2, { "code": 140 } ],
"no-console": 1
},
"parserOptions": {
"ecmaVersion": 6
2018-11-06 20:11:52 +00:00
}
}