2022-03-15 16:59:52 -04:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"node": true,
|
2023-09-07 06:16:25 -04:00
|
|
|
"es6": true,
|
2023-02-20 05:11:15 -05:00
|
|
|
"jest": true
|
2022-03-15 16:59:52 -04:00
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2023-09-07 06:16:25 -04:00
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
2022-03-15 16:59:52 -04:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:jest/recommended",
|
|
|
|
"plugin:prettier/recommended"
|
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
2024-05-15 07:41:47 -04:00
|
|
|
"ecmaVersion": 2023,
|
2022-03-15 16:59:52 -04:00
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint",
|
|
|
|
"jest",
|
|
|
|
"prettier"
|
|
|
|
]
|
|
|
|
}
|