Add testing frameworks

This commit is contained in:
2026-01-11 12:06:06 +01:00
parent 36a16bf87b
commit 7302b8c1ba
6 changed files with 335 additions and 27 deletions

View File

@ -7,19 +7,35 @@
},
"files": {
"ignoreUnknown": true,
"includes": ["**", "!node_modules", "!.next", "!dist", "!build"]
"includes": ["**", "!node_modules", "!.next", "!dist", "!build", "!coverage", "!playwright-report"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
},
"javascript": {
"globals": ["vi", "describe", "it", "test", "expect"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useConst": "warn",
"noNonNullAssertion": "warn",
"useImportType": "warn",
"noParameterAssign": "warn"
},
"correctness": {
"noUnusedVariables": "error"
},
"suspicious": {
"noUnknownAtRules": "off"
"noExplicitAny": "warn",
"noDoubleEquals": "error"
},
"complexity": {
"noUselessFragments": "warn"
}
},
"domains": {