Skip to content

Commit

Permalink
116466: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Buckingham committed Nov 21, 2024
1 parent 5f82ec8 commit 6a98fb1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/app/shared/rss-feed/rss.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import {
TestBed,
waitForAsync,
} from '@angular/core/testing';
import { ActivatedRoute, Router } from '@angular/router';
import {
ActivatedRoute,
Router

Check failure on line 8 in src/app/shared/rss-feed/rss.component.spec.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Missing trailing comma

Check failure on line 8 in src/app/shared/rss-feed/rss.component.spec.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Missing trailing comma
} from '@angular/router';
import { TranslateService } from '@ngx-translate/core';
import { of as observableOf } from 'rxjs';

Expand Down
11 changes: 8 additions & 3 deletions src/app/shared/rss-feed/rss.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ import {
OnInit,
ViewEncapsulation,
} from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import {

Check failure on line 12 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Trailing spaces not allowed

Check failure on line 12 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Trailing spaces not allowed
ActivatedRoute,
Router

Check failure on line 14 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Trailing spaces not allowed

Check failure on line 14 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Missing trailing comma

Check failure on line 14 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Trailing spaces not allowed

Check failure on line 14 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Missing trailing comma
} from '@angular/router';
import {
TranslateModule,
TranslateService,
Expand All @@ -34,8 +37,10 @@ import { getFirstCompletedRemoteData } from '../../core/shared/operators';
import { SearchConfigurationService } from '../../core/shared/search/search-configuration.service';
import { PaginatedSearchOptions } from '../search/models/paginated-search-options.model';
import { SearchFilter } from '../search/models/search-filter.model';
import { hasValue } from '../empty.util';
import { isUndefined } from 'lodash';
import {

Check failure on line 40 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Trailing spaces not allowed

Check failure on line 40 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Trailing spaces not allowed
hasValue,
isUndefined

Check failure on line 42 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (18.x)

Missing trailing comma

Check failure on line 42 in src/app/shared/rss-feed/rss.component.ts

View workflow job for this annotation

GitHub Actions / tests (20.x)

Missing trailing comma
} from '../empty.util';
/**
* The Rss feed button component.
*/
Expand Down

0 comments on commit 6a98fb1

Please sign in to comment.