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

@@ -92,6 +92,7 @@ func (ck CursorKey) String() string {
if err != nil {
return ""
}
return base64.RawURLEncoding.EncodeToString(data)
}
@@ -108,7 +109,9 @@ func (ck *CursorKey) UnmarshalText(data []byte) error {
if err != nil {
return err
}
*ck = newCk
return nil
}
@@ -145,6 +148,7 @@ func (ck *CursorKey) UnmarshalBinary(data []byte) error {
ck.ID = id
ck.Value = value
return nil
}