Skip to content

Commit

Permalink
fix: Use correct format for oxlint
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Aug 30, 2024
1 parent 083e4d4 commit 7df1102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/oxlint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { resolve } from "node:path";
export const oxlint: ToolDefinition = ({ binDir, root }) => {
const bin = resolve(root, binDir, "oxlint");
const checkArgs = [
"--format=linux",
"--format=unix",
"--deny-warnings",
"--ignore-pattern='**/dist/**'",
"--ignore-pattern='**/node_modules/**'",
Expand Down

0 comments on commit 7df1102

Please sign in to comment.