add tests

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-02-19 21:19:05 +01:00
parent df78eaf547
commit 3ef11caa59
10 changed files with 2534 additions and 50 deletions

View File

@ -1,11 +1,13 @@
{
"env": {
"node": true,
"es2021": true
"es2021": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
@ -15,6 +17,7 @@
},
"plugins": [
"@typescript-eslint",
"jest",
"prettier"
]
}