Circle CI build and lint fixes (#1407)

pull/1408/head^2
ShahanaFarooqui 2 weeks ago committed by GitHub
parent 22ab6d1154
commit f01815bd04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -23,13 +23,14 @@
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"deprecation/deprecation": "error",
"@angular-eslint/consistent-component-styles": "off",
"@angular-eslint/prefer-on-push-component-change-detection": "off",
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/prefer-standalone-component": "off",
"@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 +182,7 @@
"files": [
"*.html"
],
"parser": "@angular-eslint/template-parser",
"parser": "@angular-eslint/template-parser",
"extends": [
"plugin:@angular-eslint/template/all",
"plugin:@angular-eslint/template/recommended",
@ -206,6 +207,7 @@
"@angular-eslint/template/no-positive-tabindex": "off",
"@angular-eslint/template/prefer-ngsrc": "off",
"@angular-eslint/template/prefer-control-flow": "off",
"@angular-eslint/template/prefer-self-closing-tags": "off",
"@angular-eslint/template/use-track-by-function": "off"
}
}

@ -22,7 +22,7 @@ RUN npm run buildfrontend
RUN npm run buildbackend
# Remove non production necessary modules
RUN npm prune --production
RUN npm prune --omit=dev --legacy-peer-deps
# ---------------
# Release App

@ -26,7 +26,7 @@ RUN npm run buildfrontend
RUN npm run buildbackend
# Remove non production necessary modules
RUN npm prune --production
RUN npm prune --omit=dev --legacy-peer-deps
# ---------------
# Release App

@ -25,7 +25,7 @@ RUN npm run buildfrontend
RUN npm run buildbackend
# Remove non production necessary modules
RUN npm prune --production
RUN npm prune --omit=dev --legacy-peer-deps
# ---------------
# Release App

@ -119,7 +119,6 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe
subscribe((nodeSettings) => {
this.selNode = nodeSettings;
});
}
ngAfterViewInit() {

@ -245,10 +245,8 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
TopMenuComponent,
LoginComponent,
HelpComponent,
SettingsComponent,
BitcoinConfigComponent,
AuthSettingsComponent,
AppSettingsComponent,
NodeConfigComponent,
LNPConfigComponent,
NodeSettingsComponent,
@ -286,10 +284,8 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
TopMenuComponent,
LoginComponent,
HelpComponent,
SettingsComponent,
BitcoinConfigComponent,
AuthSettingsComponent,
AppSettingsComponent,
NodeConfigComponent,
LNPConfigComponent,
NodeSettingsComponent,
@ -313,7 +309,6 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
CamelCasePipe,
CamelCaseWithReplacePipe,
CamelCaseWithSpacesPipe,
AuthSettingsComponent,
TransactionsReportTableComponent,
OnChainGeneratedAddressComponent,
ShowPubkeyComponent,
@ -324,7 +319,6 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
IsAuthorizedComponent,
TwoFactorAuthComponent,
LoginTokenComponent,
TransactionsReportTableComponent,
LNServicesComponent,
LoopComponent,
SwapsComponent,

Loading…
Cancel
Save