2019-09-12 21:03:49 +02:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2019-10-27 15:24:56 +01:00
|
|
|
"es6": true,
|
2021-11-18 19:17:00 +01:00
|
|
|
"jest/globals": true,
|
2019-10-27 15:24:56 +01:00
|
|
|
"node": true
|
2019-09-12 21:03:49 +02:00
|
|
|
},
|
2021-07-29 21:48:46 +02:00
|
|
|
"parser": "@babel/eslint-parser",
|
2019-09-12 21:03:49 +02:00
|
|
|
"parserOptions": {
|
2021-11-08 22:06:24 +01:00
|
|
|
"ecmaFeatures": {
|
|
|
|
"experimentalObjectRestSpread": true,
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"sourceType": "module"
|
2019-09-12 21:03:49 +02:00
|
|
|
},
|
2022-05-10 18:08:32 -07:00
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2022-06-24 11:11:22 +05:30
|
|
|
"plugin:jsdoc/recommended",
|
2022-05-10 18:08:32 -07:00
|
|
|
"plugin:json/recommended",
|
2022-06-24 11:11:22 +05:30
|
|
|
"plugin:markdown/recommended",
|
2022-05-10 18:08:32 -07:00
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
2022-05-11 02:52:55 +02:00
|
|
|
"plugins": ["html", "jest", "jsdoc", "json", "prettier"],
|
2021-11-11 07:37:14 +01:00
|
|
|
"rules": {
|
2022-05-10 17:29:50 -07:00
|
|
|
"no-prototype-builtins": "off",
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
"jsdoc/check-indentation": "off",
|
|
|
|
"jsdoc/check-alignment": "off",
|
|
|
|
"jsdoc/check-line-alignment": "off",
|
|
|
|
"jsdoc/multiline-blocks": "off",
|
|
|
|
"jsdoc/newline-after-description": "off",
|
|
|
|
"jsdoc/tag-lines": "off",
|
2022-09-03 10:53:25 +05:30
|
|
|
"jsdoc/require-param-description": "off",
|
|
|
|
"jsdoc/require-param-type": "off",
|
|
|
|
"jsdoc/require-returns": "off",
|
|
|
|
"jsdoc/require-returns-description": "off",
|
2022-05-10 17:29:50 -07:00
|
|
|
"cypress/no-async-tests": "off",
|
2022-05-11 02:52:55 +02:00
|
|
|
"json/*": ["error", "allowComments"],
|
2021-12-04 15:28:40 -08:00
|
|
|
"no-empty": ["error", { "allowEmptyCatch": true }]
|
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": "./**/*.html",
|
|
|
|
"rules": {
|
|
|
|
"no-undef": "off",
|
|
|
|
"jsdoc/require-jsdoc": "off"
|
|
|
|
}
|
2022-05-10 18:08:32 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": "./**/*.md/*.html",
|
|
|
|
"rules": {
|
|
|
|
"prettier/prettier": "off"
|
|
|
|
}
|
2021-12-04 15:28:40 -08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|