Skip to content

Commit 8a673d9

Browse files
committed
Style fix: no semicolons after interface definitions!
In 894d0af (pushNotesRef: allow for concurrent operations, 2025-02-08), I introduced an interface, but I got the syntax wrong... Typescript was lenient, but ESLint isn't: gitgitgadget/tests/git-notes.test.ts 128:6 warning Delete `;` Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 5f696c6 commit 8a673d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/git-notes.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ test("push()", async () => {
120120
interface O {
121121
hello: string;
122122
bye?: string;
123-
};
123+
}
124124
const o: O = { hello: "world" };
125125
await notes.set("", o);
126126
await notes.push(remoteRepo.workDir);

0 commit comments

Comments
 (0)