MagicMirror/.eslintrc.json

17 lines
241 B
JSON
Raw Normal View History

2016-05-03 19:09:38 -04:00
{
2020-04-20 22:04:11 +02:00
"extends": "eslint:recommended",
2016-05-03 19:09:38 -04:00
"env": {
"browser": true,
2020-04-20 22:04:11 +02:00
"es6": true,
"mocha": true,
"node": true
2018-01-25 20:07:51 +01:00
},
"parserOptions": {
"sourceType": "module",
2019-09-11 15:58:51 +02:00
"ecmaVersion": 2017,
2018-01-25 20:07:51 +01:00
"ecmaFeatures": {
"globalReturn": true
}
}
}