Format docs using linter and prettier.

This commit is contained in:
Spencer Ofwiti
2021-05-11 20:51:48 +03:00
parent 5228842e61
commit 208c448984
309 changed files with 11327 additions and 3307 deletions

View File

@@ -65,6 +65,10 @@
<title>cluster_AppModule</title>
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1186,-268 1186,-70 8,-70"/>
</g>
<g id="clust6" class="cluster">
<title>cluster_AppModule_bootstrap</title>
<polygon fill="none" stroke="black" points="584,-208 584,-260 708,-260 708,-208 584,-208"/>
</g>
<g id="clust4" class="cluster">
<title>cluster_AppModule_imports</title>
<polygon fill="none" stroke="black" points="917,-78 917,-130 1178,-130 1178,-78 917,-78"/>
@@ -77,10 +81,6 @@
<title>cluster_AppModule_declarations</title>
<polygon fill="none" stroke="black" points="16,-78 16,-130 138,-130 138,-78 16,-78"/>
</g>
<g id="clust6" class="cluster">
<title>cluster_AppModule_bootstrap</title>
<polygon fill="none" stroke="black" points="584,-208 584,-260 708,-260 708,-208 584,-208"/>
</g>
<!-- AppComponent -->
<g id="node1" class="node">
<title>AppComponent</title>
@@ -277,30 +277,26 @@
<div class="tab-pane fade tab-source-code" id="c-source">
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import {BrowserModule} from &#x27;@angular/platform-browser&#x27;;
import {ErrorHandler, NgModule} from &#x27;@angular/core&#x27;;
<pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { BrowserModule } from &#x27;@angular/platform-browser&#x27;;
import { ErrorHandler, NgModule } from &#x27;@angular/core&#x27;;
import {AppRoutingModule} from &#x27;@app/app-routing.module&#x27;;
import {AppComponent} from &#x27;@app/app.component&#x27;;
import {BrowserAnimationsModule} from &#x27;@angular/platform-browser/animations&#x27;;
import {HTTP_INTERCEPTORS, HttpClientModule} from &#x27;@angular/common/http&#x27;;
import {
GlobalErrorHandler,
MockBackendProvider,
} from &#x27;@app/_helpers&#x27;;
import {DataTablesModule} from &#x27;angular-datatables&#x27;;
import {SharedModule} from &#x27;@app/shared/shared.module&#x27;;
import {MatTableModule} from &#x27;@angular/material/table&#x27;;
import {AuthGuard} from &#x27;@app/_guards&#x27;;
import {LoggerModule} from &#x27;ngx-logger&#x27;;
import {environment} from &#x27;@src/environments/environment&#x27;;
import {ErrorInterceptor, HttpConfigInterceptor, LoggingInterceptor} from &#x27;@app/_interceptors&#x27;;
import {MutablePgpKeyStore} from &#x27;@app/_pgp&#x27;;
import { AppRoutingModule } from &#x27;@app/app-routing.module&#x27;;
import { AppComponent } from &#x27;@app/app.component&#x27;;
import { BrowserAnimationsModule } from &#x27;@angular/platform-browser/animations&#x27;;
import { HTTP_INTERCEPTORS, HttpClientModule } from &#x27;@angular/common/http&#x27;;
import { GlobalErrorHandler, MockBackendProvider } from &#x27;@app/_helpers&#x27;;
import { DataTablesModule } from &#x27;angular-datatables&#x27;;
import { SharedModule } from &#x27;@app/shared/shared.module&#x27;;
import { MatTableModule } from &#x27;@angular/material/table&#x27;;
import { AuthGuard } from &#x27;@app/_guards&#x27;;
import { LoggerModule } from &#x27;ngx-logger&#x27;;
import { environment } from &#x27;@src/environments/environment&#x27;;
import { ErrorInterceptor, HttpConfigInterceptor, LoggingInterceptor } from &#x27;@app/_interceptors&#x27;;
import { MutablePgpKeyStore } from &#x27;@app/_pgp&#x27;;
import { ServiceWorkerModule } from &#x27;@angular/service-worker&#x27;;
@NgModule({
declarations: [
AppComponent
],
declarations: [AppComponent],
imports: [
BrowserModule,
AppRoutingModule,
@@ -313,8 +309,9 @@ import {MutablePgpKeyStore} from &#x27;@app/_pgp&#x27;;
level: environment.logLevel,
serverLogLevel: environment.serverLogLevel,
serverLoggingUrl: &#x60;${environment.loggingUrl}/api/logs/&#x60;,
disableConsoleLogging: false
})
disableConsoleLogging: false,
}),
ServiceWorkerModule.register(&#x27;ngsw-worker.js&#x27;, { enabled: environment.production }),
],
providers: [
AuthGuard,
@@ -326,9 +323,9 @@ import {MutablePgpKeyStore} from &#x27;@app/_pgp&#x27;;
{ provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true },
{ provide: HTTP_INTERCEPTORS, useClass: LoggingInterceptor, multi: true },
],
bootstrap: [AppComponent]
bootstrap: [AppComponent],
})
export class AppModule { }
export class AppModule {}
</code></pre>
</div>
</div>