Skip to content

Commit e43f516

Browse files
committedSep 20, 2022
refactor: prettier verify
1 parent 147c4f9 commit e43f516

File tree

108 files changed

+1713
-1775
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+1713
-1775
lines changed
 

‎.prettierrc.json ‎.prettierrc

File renamed without changes.

‎src/app/app-routing.module.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { NgModule } from '@angular/core'
2-
import { RouterModule, Routes } from '@angular/router'
1+
import { NgModule } from '@angular/core';
2+
import { RouterModule, Routes } from '@angular/router';
33

44
const routes: Routes = [
55
{
@@ -11,10 +11,10 @@ const routes: Routes = [
1111
loadChildren: () => import('./modules/auth/auth.module').then((m) => m.AuthModule),
1212
},
1313
{ path: '**', redirectTo: 'error/404' },
14-
]
14+
];
1515

1616
@NgModule({
1717
imports: [RouterModule.forRoot(routes)],
1818
exports: [RouterModule],
1919
})
20-
export class AppRoutingModule { }
20+
export class AppRoutingModule {}

0 commit comments

Comments
 (0)
Please sign in to comment.