style: run prettier
All checks were successful
TrafficCue Server CI / check (push) Successful in 19s

This commit is contained in:
Cfp
2025-06-22 17:58:21 +02:00
parent eb9c92e716
commit fdcac475f3
2 changed files with 3 additions and 3 deletions

View File

@ -10,4 +10,4 @@ jobs:
- name: Install dependencies
run: bun i
- run: bunx eslint
- run: bunx prettier --check .
- run: bunx prettier --check .

View File

@ -6,7 +6,7 @@ import z from "zod";
export interface OverpassResult {
elements: OverpassElement[];
};
}
export interface OverpassElement {
type: "node" | "way" | "relation";
@ -19,7 +19,7 @@ export interface OverpassElement {
lat: number; // Only for relations
lon: number; // Only for relations
};
};
}
const OVERPASS_SERVER = "https://overpass-api.de/api/interpreter";