feat: add ESLint configuration and testing infrastructure

Add comprehensive ESLint setup with React and TypeScript support, create basic integration tests for the shutdown utilities, and enhance the Justfile with a new check command that runs all validation steps (cargo check, clippy, tests, and linting).
This commit is contained in:
Ryan Walters
2025-11-03 02:21:35 -06:00
parent 47c23459f1
commit b1ed2434f8
9 changed files with 2248 additions and 6 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ export class BannerApiClient {
);
}
return response.json();
return (await response.json()) as T;
}
async getHealth(): Promise<HealthResponse> {