Skip to content

Commit

Permalink
fix: Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed Jul 7, 2024
1 parent e046252 commit d933915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite-plugin-checker/src/checkers/biome/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function parseBiomeOutput(output: string) {

const diagnostics: NormalizedDiagnostic[] = parsed.diagnostics.map((d) => {
const loc = {
file: d.location.path || '',
file: d.location.path?.file || '',
start: getLineAndColumn(d.location.sourceCode, d.location.span?.[0]),
end: getLineAndColumn(d.location.sourceCode, d.location.span?.[1]),
}
Expand Down

0 comments on commit d933915

Please sign in to comment.