infoscreens/.eslintrc.json

21 lines
374 B
JSON
Raw Normal View History

2017-11-28 21:43:25 +01:00
{
"extends": "airbnb-base",
"rules": {
"class-methods-use-this": 0,
"no-continue": 0,
"no-plusplus": 0,
"object-curly-newline": 0
},
"globals": {
"customElements": false,
"document": false,
"fetch": false,
2017-11-28 22:30:37 +01:00
"Plotly": false,
"window": false
2017-11-28 21:43:25 +01:00
},
"settings": {
"import/parser": "babel-eslint"
},
"parser": "babel-eslint"
}