diff --git a/projects/swagger/.eslintrc.json b/projects/swagger/.eslintrc.json
index cbfca2811af74d2529b358f39473ed1cb8c034e0..686c3a3227aa8a38d274f225e77822e08d39a93c 100644
--- a/projects/swagger/.eslintrc.json
+++ b/projects/swagger/.eslintrc.json
@@ -39,4 +39,3 @@
     }
   ]
 }
-
diff --git a/projects/swagger/src/app/app.component.spec.ts b/projects/swagger/src/app/app.component.spec.ts
index 9baefa4f0b9d07bfea622e88da84843c8d8b0f8c..1294d6d8d29d45542d0da60f48159ad6bcd3d53b 100644
--- a/projects/swagger/src/app/app.component.spec.ts
+++ b/projects/swagger/src/app/app.component.spec.ts
@@ -1,5 +1,5 @@
-import { TestBed } from '@angular/core/testing';
-import { AppComponent } from './app.component';
+import {TestBed} from '@angular/core/testing';
+import {AppComponent} from './app.component';
 
 describe('AppComponent', () => {
   beforeEach(async () => {
@@ -24,6 +24,8 @@ describe('AppComponent', () => {
     const fixture = TestBed.createComponent(AppComponent);
     fixture.detectChanges();
     const compiled = fixture.nativeElement as HTMLElement;
-    expect(compiled.querySelector('h1')?.textContent).toContain('Hello, swagger');
+    expect(compiled.querySelector('h1')?.textContent).toContain(
+      'Hello, swagger',
+    );
   });
 });
diff --git a/projects/swagger/src/app/app.routes.ts b/projects/swagger/src/app/app.routes.ts
index dc39edb5f23a35f788cba146dd7337127ba6c5ab..8b5e5fb231080aef127773e3f0a12865a5923fc1 100644
--- a/projects/swagger/src/app/app.routes.ts
+++ b/projects/swagger/src/app/app.routes.ts
@@ -1,3 +1,3 @@
-import { Routes } from '@angular/router';
+import {Routes} from '@angular/router';
 
 export const routes: Routes = [];
diff --git a/projects/swagger/tsconfig.app.json b/projects/swagger/tsconfig.app.json
index f0d83929ceab987d9b938121954b75b77cf4200d..fc7c8d968839ed0e5c3d1f39eca58d4eb7c7ed78 100644
--- a/projects/swagger/tsconfig.app.json
+++ b/projects/swagger/tsconfig.app.json
@@ -4,10 +4,6 @@
     "outDir": "../../out-tsc/app",
     "types": []
   },
-  "files": [
-    "src/main.ts"
-  ],
-  "include": [
-    "src/**/*.d.ts"
-  ]
+  "files": ["src/main.ts"],
+  "include": ["src/**/*.d.ts"]
 }
diff --git a/projects/swagger/tsconfig.spec.json b/projects/swagger/tsconfig.spec.json
index 92c2fdcc2712a55b001a91f197105f3eb77014d7..34ec2fa5623432e971fed0e705bfbbbb3468d766 100644
--- a/projects/swagger/tsconfig.spec.json
+++ b/projects/swagger/tsconfig.spec.json
@@ -2,12 +2,7 @@
   "extends": "../../tsconfig.json",
   "compilerOptions": {
     "outDir": "../../out-tsc/spec",
-    "types": [
-      "jasmine"
-    ]
+    "types": ["jasmine"]
   },
-  "include": [
-    "src/**/*.spec.ts",
-    "src/**/*.d.ts"
-  ]
+  "include": ["src/**/*.spec.ts", "src/**/*.d.ts"]
 }