test: update tests, add eslint rules

This commit is contained in:
2026-07-13 15:01:55 +05:00
parent 06e059367e
commit 9705bac7af
7 changed files with 202 additions and 74 deletions
+19
View File
@@ -37,6 +37,25 @@ export default defineConfig(
caughtErrorsIgnorePattern: "^_",
},
],
"@typescript-eslint/parameter-properties": [
"error",
{
prefer: "class-property",
allow: [],
},
],
"@typescript-eslint/naming-convention": [
"error",
{
selector: "classProperty",
modifiers: ["private"],
format: null,
custom: {
regex: "^.*$",
match: false,
},
},
],
},
},
{