Skip to content

Commit

Permalink
Circle CI build and lint fixes (#1407)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShahanaFarooqui authored Jun 10, 2024
1 parent 22ab6d1 commit f01815b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 13 deletions.
8 changes: 5 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down Expand Up @@ -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",
Expand All @@ -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"
}
}
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.arm32v7
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.arm64v8
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe
subscribe((nodeSettings) => {
this.selNode = nodeSettings;
});

}

ngAfterViewInit() {
Expand Down
6 changes: 0 additions & 6 deletions src/app/shared/shared.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,8 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
TopMenuComponent,
LoginComponent,
HelpComponent,
SettingsComponent,
BitcoinConfigComponent,
AuthSettingsComponent,
AppSettingsComponent,
NodeConfigComponent,
LNPConfigComponent,
NodeSettingsComponent,
Expand Down Expand Up @@ -286,10 +284,8 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
TopMenuComponent,
LoginComponent,
HelpComponent,
SettingsComponent,
BitcoinConfigComponent,
AuthSettingsComponent,
AppSettingsComponent,
NodeConfigComponent,
LNPConfigComponent,
NodeSettingsComponent,
Expand All @@ -313,7 +309,6 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
CamelCasePipe,
CamelCaseWithReplacePipe,
CamelCaseWithSpacesPipe,
AuthSettingsComponent,
TransactionsReportTableComponent,
OnChainGeneratedAddressComponent,
ShowPubkeyComponent,
Expand All @@ -324,7 +319,6 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = {
IsAuthorizedComponent,
TwoFactorAuthComponent,
LoginTokenComponent,
TransactionsReportTableComponent,
LNServicesComponent,
LoopComponent,
SwapsComponent,
Expand Down

0 comments on commit f01815b

Please sign in to comment.