2021-07-07 11:39:10 +00:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"standard",
|
|
|
|
"prettier"
|
|
|
|
],
|
2024-11-08 10:21:56 +00:00
|
|
|
"plugins": [
|
|
|
|
"unicorn"
|
|
|
|
],
|
2021-07-07 11:39:10 +00:00
|
|
|
"parserOptions": {
|
2021-12-16 09:04:32 +00:00
|
|
|
"ecmaVersion": 2020
|
2021-07-07 11:39:10 +00:00
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
// Do not allow importing of implicit dependencies.
|
2024-11-08 10:21:56 +00:00
|
|
|
"import/no-extraneous-dependencies": "error",
|
|
|
|
"unicorn/prefer-node-protocol": "error"
|
2024-02-09 11:27:26 +00:00
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
// Extra rules for Cypress tests
|
|
|
|
{ "files": ["**/*.spec.ts"], "extends": ["plugin:cypress/recommended"] }
|
|
|
|
]
|
2021-07-07 11:39:10 +00:00
|
|
|
}
|