mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-17 20:28:19 +00:00
31 lines
563 B
JSON
31 lines
563 B
JSON
{
|
|
"extends": ["eslint:recommended", "plugin:prettier/recommended", "plugin:jsdoc/recommended"],
|
|
"plugins": ["prettier", "jsdoc"],
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"mocha": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"config": true,
|
|
"Log": true,
|
|
"MM": true,
|
|
"Module": true,
|
|
"moment": true
|
|
},
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaVersion": 2017,
|
|
"ecmaFeatures": {
|
|
"globalReturn": true
|
|
}
|
|
},
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"eqeqeq": "error",
|
|
"no-prototype-builtins": "off",
|
|
"no-unused-vars": "off"
|
|
}
|
|
}
|