2019-09-12 21:03:49 +02:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2019-10-27 15:24:56 +01:00
|
|
|
"es6": true,
|
2022-02-10 20:32:21 +01:00
|
|
|
"jest/globals": true,
|
2019-10-27 15:24:56 +01:00
|
|
|
"node": true
|
2019-09-12 21:03:49 +02:00
|
|
|
},
|
2022-02-10 20:32:21 +01:00
|
|
|
"parser": "@babel/eslint-parser",
|
2019-09-12 21:03:49 +02:00
|
|
|
"parserOptions": {
|
2022-02-10 20:32:21 +01:00
|
|
|
"ecmaFeatures": {
|
|
|
|
"experimentalObjectRestSpread": true,
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"sourceType": "module"
|
2019-09-12 21:03:49 +02:00
|
|
|
},
|
2022-02-10 20:32:21 +01:00
|
|
|
"extends": ["eslint:recommended", "plugin:jsdoc/recommended", "plugin:markdown/recommended", "plugin:prettier/recommended"],
|
|
|
|
"plugins": ["html", "jest", "jsdoc", "prettier"],
|
2019-09-12 21:03:49 +02:00
|
|
|
"rules": {
|
2022-02-10 20:32:21 +01:00
|
|
|
"no-prototype-builtins": 0,
|
|
|
|
"no-unused-vars": 0,
|
|
|
|
"jsdoc/check-indentation": 0,
|
|
|
|
"jsdoc/check-alignment": 0,
|
|
|
|
"jsdoc/check-line-alignment": 0,
|
|
|
|
"jsdoc/multiline-blocks": 0,
|
|
|
|
"jsdoc/newline-after-description": 0,
|
|
|
|
"jsdoc/tag-lines": 0,
|
|
|
|
"no-empty": ["error", { "allowEmptyCatch": true }]
|
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": "./**/*.html",
|
|
|
|
"rules": {
|
|
|
|
"no-undef": "off",
|
|
|
|
"jsdoc/require-jsdoc": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2019-09-12 21:03:49 +02:00
|
|
|
}
|