Skip to content

Commit

Permalink
(Fix): Fix squawk platform constraint (#875)
Browse files Browse the repository at this point in the history
Fix typo in #872
  • Loading branch information
TylerJang27 authored Sep 23, 2024
1 parent ec02ec5 commit f378f06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linters/squawk/squawk.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { linterCheckTest } from "tests";

// No release for squawk on arm64 darwin https://github.com/sbdchd/squawk/issues/372
// No release for squawk on arm64 linux https://github.com/sbdchd/squawk/issues/372
linterCheckTest({
linterName: "squawk",
skipTestIf: () => process.arch === "arm64" && process.platform === "darwin",
skipTestIf: () => process.arch === "arm64" && process.platform === "linux",
});

0 comments on commit f378f06

Please sign in to comment.