Skip to content

Commit

Permalink
Ignore lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mbraak committed Apr 1, 2024
1 parent e300b00 commit f7f870a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/jqTree/options.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ describe("dataFilter", () => {
it("changes the loaded data", async () => {
server.use(http.get("/tree/", () => HttpResponse.json(exampleData)));

const dataFilter = jest.fn((data) => [data[1]]);
const dataFilter = jest.fn((data) => [data[1]]); // eslint-disable-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-return

const $tree = $("#tree1");
$tree.tree({
Expand Down

0 comments on commit f7f870a

Please sign in to comment.