2022-03-22 20:15:50 +01:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"node": true,
|
2023-09-07 12:48:56 +02:00
|
|
|
"es6": true,
|
2023-02-19 21:19:05 +01:00
|
|
|
"jest": true
|
2022-03-22 20:15:50 +01:00
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2023-09-07 12:48:56 +02:00
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
2022-03-22 20:15:50 +01:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
2023-02-19 21:19:05 +01:00
|
|
|
"plugin:jest/recommended",
|
2022-03-22 20:15:50 +01:00
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": "latest",
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint",
|
2023-02-19 21:19:05 +01:00
|
|
|
"jest",
|
2022-03-22 20:15:50 +01:00
|
|
|
"prettier"
|
|
|
|
]
|
|
|
|
}
|