chore: apply prettier on the entire project

This commit is contained in:
jubnl
2026-05-25 21:59:42 +02:00
parent c130ed41be
commit 6bcdfbc34b
488 changed files with 82986 additions and 45830 deletions
@@ -1,8 +1,9 @@
import { describe, it, expect, vi } from 'vitest';
import { HttpException } from '@nestjs/common';
import { WeatherController } from '../../../src/nest/weather/weather.controller';
import { ApiError } from '../../../src/services/weatherService';
import type { WeatherService } from '../../../src/nest/weather/weather.service';
import { ApiError } from '../../../src/services/weatherService';
import { HttpException } from '@nestjs/common';
import { describe, it, expect, vi } from 'vitest';
function makeController(svc: Partial<WeatherService>) {
return new WeatherController(svc as WeatherService);