Add wsl linter and fix

Signed-off-by: Émile Ré <emile@probo.com>
This commit is contained in:
Émile Ré
2026-05-19 14:51:08 +04:00
parent eedfdcecc8
commit 9156d6a16a
882 changed files with 6068 additions and 574 deletions

View File

@@ -114,6 +114,7 @@ func (id *TenantID) Scan(value any) error {
}
copy((*id)[:], decoded)
return nil
default:
return fmt.Errorf("invalid type for TenantID: expected string, got %T", value)
@@ -143,6 +144,7 @@ func (id *TenantID) UnmarshalText(text []byte) error {
}
copy((*id)[:], decoded)
return nil
}