Blacked and isorted the python files
Prettied and eslinted the typescript/html files
This commit is contained in:
@ -1,12 +1,10 @@
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { LOCALE_ID, NgModule } from '@angular/core';
|
||||
import { LayoutModule } from '@angular/cdk/layout';
|
||||
import { registerLocaleData } from '@angular/common';
|
||||
import { HttpClientModule } from '@angular/common/http';
|
||||
import enIN from '@angular/common/locales/en-IN';
|
||||
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { AppComponent } from './app.component';
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||
import { LOCALE_ID, NgModule } from '@angular/core';
|
||||
import { FlexLayoutModule } from '@angular/flex-layout';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatCardModule } from '@angular/material/card';
|
||||
import { MatDialogModule } from '@angular/material/dialog';
|
||||
@ -17,27 +15,23 @@ import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatInputModule } from '@angular/material/input';
|
||||
import { MatMenuModule } from '@angular/material/menu';
|
||||
import { MatSnackBarModule } from '@angular/material/snack-bar';
|
||||
import { LayoutModule } from '@angular/cdk/layout';
|
||||
import { LogoutComponent } from './auth/logout/logout.component';
|
||||
import { LoginComponent } from './auth/login/login.component';
|
||||
import { HomeComponent } from './home/home.component';
|
||||
import { CoreModule } from './core/core.module';
|
||||
import { ReactiveFormsModule } from '@angular/forms';
|
||||
import { SharedModule } from './shared/shared.module';
|
||||
import { FlexLayoutModule } from '@angular/flex-layout';
|
||||
import { MatToolbarModule } from '@angular/material/toolbar';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
import { AppComponent } from './app.component';
|
||||
import { LoginComponent } from './auth/login/login.component';
|
||||
import { LogoutComponent } from './auth/logout/logout.component';
|
||||
import { CoreModule } from './core/core.module';
|
||||
import { HomeComponent } from './home/home.component';
|
||||
import { NavBarComponent } from './nav-bar/nav-bar.component';
|
||||
import { SharedModule } from './shared/shared.module';
|
||||
|
||||
registerLocaleData(enIN);
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent,
|
||||
LoginComponent,
|
||||
LogoutComponent,
|
||||
HomeComponent,
|
||||
NavBarComponent
|
||||
],
|
||||
declarations: [AppComponent, LoginComponent, LogoutComponent, HomeComponent, NavBarComponent],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
@ -58,11 +52,9 @@ registerLocaleData(enIN);
|
||||
LayoutModule,
|
||||
ReactiveFormsModule,
|
||||
CoreModule,
|
||||
SharedModule
|
||||
SharedModule,
|
||||
],
|
||||
providers: [
|
||||
{provide: LOCALE_ID, useValue: 'en-IN'},
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
providers: [{ provide: LOCALE_ID, useValue: 'en-IN' }],
|
||||
bootstrap: [AppComponent],
|
||||
})
|
||||
export class AppModule { }
|
||||
export class AppModule {}
|
||||
|
||||
Reference in New Issue
Block a user