Update formatting rules to enforce consistent tab-based indentation across the backend

This commit is contained in:
2026-01-04 23:30:54 +01:00
parent 4b53a8d410
commit 3259927fd1
12 changed files with 194 additions and 194 deletions

View File

@@ -1,12 +1,12 @@
import { Controller, Get } from '@nestjs/common';
import { AppService } from './app.service';
import { Controller, Get } from "@nestjs/common";
import { AppService } from "./app.service";
@Controller()
export class AppController {
constructor(private readonly appService: AppService) {}
constructor(private readonly appService: AppService) {}
@Get()
getHello(): string {
return this.appService.getHello();
}
@Get()
getHello(): string {
return this.appService.getHello();
}
}