wp-liveticker/.eslintrc.json
Stefan Kalscheuer 0cab1a3580 update JS code style to currently recommended conventions
ES5 support is still present to not introduce breaking changes (dropped
IE10 support) in minor updates.
2019-08-28 11:15:02 +02:00

24 lines
346 B
JSON

{
"env": {
"es6": false,
"browser": true
},
"globals": {
"sclivetickerAjax": "readonly"
},
"extends": [
"plugin:@wordpress/eslint-plugin/recommended",
"plugin:@wordpress/eslint-plugin/es5"
],
"overrides": [
{
"files": [
"*"
],
"rules": {
"no-var": "off"
}
}
]
}