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