chore: add ESLint v9 config with typescript-eslint

- Add eslint.config.mjs with typescript-eslint integration
- Install typescript-eslint, @typescript-eslint/eslint-plugin, @typescript-eslint/parser
- Fix unused params warning in ipc-handlers.ts
This commit is contained in:
2026-03-12 13:54:56 +08:00
parent 0945d7f0b2
commit 7be6a3ff6a
5 changed files with 403 additions and 1 deletions

View File

@@ -531,7 +531,7 @@ function registerDeleteVersion(): void {
* Rollback to a previous version
*/
function registerRollback(): void {
handleWithParams<RollbackParams, DeployResult>("rollback", async (params) => {
handleWithParams<RollbackParams, DeployResult>("rollback", async (_params) => {
// This would read the version file and redeploy
// Simplified implementation - would need full implementation
throw new Error("Rollback not yet implemented");