We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@typescript-eslint/no-unused-vars
1 parent c936c81 commit e1f3addCopy full SHA for e1f3add
server/src/server.test.ts
@@ -734,13 +734,15 @@ describe("Helper Functions", () => {
734
});
735
736
it("should correctly identify built-in functions", () => {
737
+ /* eslint-disable @typescript-eslint/no-unused-vars */
738
const builtIns = [
739
"list/map",
740
"list/filter",
741
"maybe/default",
742
"result/bind",
743
];
744
const nonBuiltIns = ["custom/function", "user/defined", "random/name"];
745
+ /* eslint-enable @typescript-eslint/no-unused-vars */
746
747
// This test would require access to the isBuiltInFunction helper
748
// In a real implementation, you'd export it or test it indirectly
0 commit comments