diff --git a/client/src/app/setup/setup.component.ts b/client/src/app/setup/setup.component.ts
index 77f9be9..ec86af8 100644
--- a/client/src/app/setup/setup.component.ts
+++ b/client/src/app/setup/setup.component.ts
@@ -19,11 +19,7 @@ export class SetupComponent implements OnInit {
public step: number = 1;
- constructor(
- private authService: AuthService,
- private settingsService: SettingsService,
- private router: Router
- ) {}
+ constructor(private authService: AuthService, private settingsService: SettingsService, private router: Router) {}
ngOnInit(): void {}
diff --git a/client/src/app/torrent-download/torrent-download.component.ts b/client/src/app/torrent-download/torrent-download.component.ts
index b228b64..85787b6 100644
--- a/client/src/app/torrent-download/torrent-download.component.ts
+++ b/client/src/app/torrent-download/torrent-download.component.ts
@@ -12,7 +12,5 @@ export class TorrentDownloadComponent implements OnInit {
constructor() {}
- ngOnInit(): void {
-
- }
+ ngOnInit(): void {}
}
diff --git a/client/src/environments/environment.prod.ts b/client/src/environments/environment.prod.ts
index 3612073..c966979 100644
--- a/client/src/environments/environment.prod.ts
+++ b/client/src/environments/environment.prod.ts
@@ -1,3 +1,3 @@
export const environment = {
- production: true
+ production: true,
};
diff --git a/client/src/environments/environment.ts b/client/src/environments/environment.ts
index 7b4f817..99c3763 100644
--- a/client/src/environments/environment.ts
+++ b/client/src/environments/environment.ts
@@ -3,7 +3,7 @@
// The list of file replacements can be found in `angular.json`.
export const environment = {
- production: false
+ production: false,
};
/*
diff --git a/client/src/main.ts b/client/src/main.ts
index fa4e0ae..d9a2e7e 100644
--- a/client/src/main.ts
+++ b/client/src/main.ts
@@ -10,4 +10,4 @@ if (environment.production) {
platformBrowserDynamic()
.bootstrapModule(AppModule)
- .catch(err => console.error(err));
+ .catch((err) => console.error(err));
diff --git a/client/src/test.ts b/client/src/test.ts
index 50193eb..4f56cf5 100644
--- a/client/src/test.ts
+++ b/client/src/test.ts
@@ -2,23 +2,21 @@
import 'zone.js/dist/zone-testing';
import { getTestBed } from '@angular/core/testing';
-import {
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting
-} from '@angular/platform-browser-dynamic/testing';
+import { BrowserDynamicTestingModule, platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing';
declare const require: {
- context(path: string, deep?: boolean, filter?: RegExp): {
+ context(
+ path: string,
+ deep?: boolean,
+ filter?: RegExp
+ ): {
keys(): string[];
(id: string): T;
};
};
// First, initialize the Angular testing environment.
-getTestBed().initTestEnvironment(
- BrowserDynamicTestingModule,
- platformBrowserDynamicTesting()
-);
+getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDynamicTesting());
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.