fix lint and more features!

This commit is contained in:
Andrey Kondratev
2025-11-10 14:15:40 +05:00
parent 82a9596370
commit 712c25a881
6 changed files with 534 additions and 36 deletions

View File

@@ -77,8 +77,11 @@ export default [
"indent": ["error", 4],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-unused-vars": ["warn", {
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}],
"no-console": "off"
}
}
];
];