2016-05-03 19:09:38 -04:00
|
|
|
{
|
2020-07-27 13:10:07 +02:00
|
|
|
"extends": ["eslint:recommended", "plugin:prettier/recommended", "plugin:jsdoc/recommended"],
|
|
|
|
"plugins": ["prettier", "jsdoc"],
|
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
|
|
|
},
|
2020-05-02 10:33:24 +02:00
|
|
|
"globals": {
|
|
|
|
"config": true,
|
|
|
|
"Log": true,
|
2020-05-02 10:39:09 +02:00
|
|
|
"MM": true,
|
2020-05-05 14:55:15 +02:00
|
|
|
"Module": true,
|
2020-05-02 10:33:24 +02:00
|
|
|
"moment": 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
|
|
|
|
}
|
2020-03-28 06:56:30 +01:00
|
|
|
},
|
2020-04-21 07:36:18 +02:00
|
|
|
"rules": {
|
2020-03-28 06:56:30 +01:00
|
|
|
"prettier/prettier": "error",
|
2020-04-21 15:13:06 +02:00
|
|
|
"eqeqeq": "error",
|
2020-04-21 10:37:24 +02:00
|
|
|
"no-prototype-builtins": "off",
|
2020-04-21 07:36:18 +02:00
|
|
|
"no-unused-vars": "off"
|
|
|
|
}
|
2016-12-30 17:44:41 -03:00
|
|
|
}
|