chore: fix lint baseline

This commit is contained in:
Federico Jaramillo Martinez
2026-05-07 23:43:10 +02:00
parent 1840ab3d7e
commit ef63a7a063
12 changed files with 66 additions and 34 deletions
+1
View File
@@ -88,6 +88,7 @@ function parseStatus(raw: string): GitStatusResponse {
}
function stateFor(code: string | undefined): GitFileState {
if (code === undefined) return "unmodified";
switch (code) {
case ".": return "unmodified";
case "M": return "modified";