Skip to content

Commit

Permalink
Add eslint-disable for floating promises in reactFlowToWorkflow and W…
Browse files Browse the repository at this point in the history
…orkflow files
  • Loading branch information
radityaharya committed Jan 23, 2024
1 parent 0aa3b8e commit ffe0cc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/utils/reactFlowToWorkflow.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-floating-promises */
import useStore from "../states/store";
import { type Node, type Edge } from "@xyflow/react";
import validateWorkflow from "./validate";
Expand Down
2 changes: 2 additions & 0 deletions src/lib/workflow/Workflow.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* eslint-disable @typescript-eslint/no-misused-promises */
/* eslint-disable @typescript-eslint/restrict-template-expressions */
/* eslint-disable @typescript-eslint/no-floating-promises */

import { Base } from "./Base";
import type { AccessToken } from "./Base";
import Filter from "./Filter";
Expand Down

0 comments on commit ffe0cc7

Please sign in to comment.