chore(lint): burn down remaining warnings to zero

This commit is contained in:
William Valentin
2026-02-15 23:14:21 -08:00
parent 49b752e8b0
commit 948d4ac6d8
67 changed files with 235 additions and 256 deletions
+2 -2
View File
@@ -155,8 +155,8 @@ export class ConfigBuilder {
this.config.automation = automation;
}
build(): Record<string, any> {
return structuredClone(this.config) as Record<string, any>;
build(): Record<string, unknown> {
return structuredClone(this.config) as Record<string, unknown>;
}
toYaml(): string {