mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 01:40:29 +01:00
Lint fix
This commit is contained in:
parent
475b47b7ea
commit
43a46b65e1
@ -29,7 +29,7 @@
|
||||
"@angular-eslint/sort-ngmodule-metadata-arrays": "off",
|
||||
"@angular-eslint/use-component-view-encapsulation": "off",
|
||||
"@angular-eslint/use-injectable-provided-in": "off",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@typescript-eslint/no-non-null-assertion": "off",
|
||||
"@typescript-eslint/type-annotation-spacing": 0,
|
||||
"quotes": ["error", "single"],
|
||||
@ -181,7 +181,7 @@
|
||||
"files": [
|
||||
"*.html"
|
||||
],
|
||||
"parser": "@angular-eslint/template-parser",
|
||||
"parser": "@angular-eslint/template-parser",
|
||||
"extends": [
|
||||
"plugin:@angular-eslint/template/all",
|
||||
"plugin:@angular-eslint/template/recommended",
|
||||
@ -205,6 +205,7 @@
|
||||
"@angular-eslint/template/no-interpolation-in-attributes": "off",
|
||||
"@angular-eslint/template/no-positive-tabindex": "off",
|
||||
"@angular-eslint/template/prefer-ngsrc": "off",
|
||||
"@angular-eslint/template/prefer-control-flow": "off",
|
||||
"@angular-eslint/template/use-track-by-function": "off"
|
||||
}
|
||||
}
|
||||
|
@ -115,6 +115,7 @@
|
||||
"lint": {
|
||||
"builder": "@angular-eslint/builder:lint",
|
||||
"options": {
|
||||
"eslintConfig": ".eslintrc.json",
|
||||
"lintFilePatterns": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.html"
|
||||
|
@ -50,7 +50,7 @@ if (isDevMode()) { isDevEnvironemt = true; }
|
||||
}
|
||||
}),
|
||||
EffectsModule.forRoot([RTLEffects, LNDEffects, CLNEffects, ECLEffects]),
|
||||
isDevEnvironemt ? StoreDevtoolsModule.instrument({connectInZone: true}) : []
|
||||
isDevEnvironemt ? StoreDevtoolsModule.instrument({ connectInZone: true }) : []
|
||||
],
|
||||
declarations: [AppComponent],
|
||||
providers: [
|
||||
|
@ -89,7 +89,7 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni
|
||||
}
|
||||
this.totalLocalFailedTransactions = lffhSeletor.localFailedForwardingHistory.totalForwards || 0;
|
||||
this.failedLocalEvents = lffhSeletor.localFailedForwardingHistory.listForwards || [];
|
||||
if (this.failedLocalEvents&& this.sort && this.paginator && this.displayedColumns.length > 0) {
|
||||
if (this.failedLocalEvents && this.sort && this.paginator && this.displayedColumns.length > 0) {
|
||||
this.loadLocalfailedLocalEventsTable(this.failedLocalEvents);
|
||||
}
|
||||
this.logger.info(lffhSeletor);
|
||||
|
Loading…
Reference in New Issue
Block a user