mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-19 18:31:52 +00:00
32 lines
610 B
JSON
32 lines
610 B
JSON
{
|
|
"extends": ["eslint:recommended", "plugin:prettier/recommended", "plugin:jsdoc/recommended"],
|
|
"plugins": ["prettier", "jsdoc", "jest"],
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"jest/globals": 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",
|
|
"no-useless-return": "error"
|
|
}
|
|
}
|