Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mlapaglia committed Jul 17, 2024
1 parent 2b7202f commit 981a5ad
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 40 deletions.
6 changes: 3 additions & 3 deletions openalprwebhookprocessor.client/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
}
],
"@stylistic/ts/indent": [ "error", 4 ],
"@stylistic/ts/lines-between-class-members": [ "off" ],
"@stylistic/ts/object-curly-spacing": [ "off" ],
"@stylistic/ts/quotes": [ "error", "single" ],
"@stylistic/ts/space-before-function-paren": [ "error", "never" ],
"@stylistic/ts/lines-between-class-members": [ "off" ]

"@stylistic/ts/quote-props": [ "off" ],
"@stylistic/ts/space-before-function-paren": [ "error", "never" ]
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ describe('PlateComponent', () => {

beforeEach(async() => {
await TestBed.configureTestingModule({
imports: [BrowserAnimationsModule,
PlateComponent],
providers: [
DatePipe,
Lightbox,
LightboxConfig,
LightboxEvent,
PlateService,
provideHttpClient(withInterceptorsFromDi()),
provideHttpClientTesting()
]
})
imports: [BrowserAnimationsModule,
PlateComponent],
providers: [
DatePipe,
Lightbox,
LightboxConfig,
LightboxEvent,
PlateService,
provideHttpClient(withInterceptorsFromDi()),
provideHttpClientTesting()
]
})
.compileComponents();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'
describe(PlatesComponent.name, () => {
beforeEach(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule,
BrowserAnimationsModule],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
imports: [RouterTestingModule,
BrowserAnimationsModule],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
});

it('should create the app', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ describe(AlertsService.name, () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});

service = TestBed.inject(AlertsService);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ describe(PushoverService.name, () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
service = TestBed.inject(PushoverService);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ describe('WebpushService', () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
service = TestBed.inject(WebpushService);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ describe('CamerasComponent', () => {

beforeEach(async() => {
await TestBed.configureTestingModule({
imports: [CamerasComponent],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
}).compileComponents();
imports: [CamerasComponent],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
}).compileComponents();
});

beforeEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ describe('EnrichersService', () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
service = TestBed.inject(EnrichersService);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ describe('ForwardsService', () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
imports: [],
providers: [provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
service = TestBed.inject(ForwardsService);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ describe(SystemLogsService.name, () => {

beforeEach(() => {
TestBed.configureTestingModule({
imports: [],
providers: [SystemLogsService, provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
imports: [],
providers: [SystemLogsService, provideHttpClient(withInterceptorsFromDi()), provideHttpClientTesting()]
});
service = TestBed.inject(SystemLogsService);
});

Expand Down

0 comments on commit 981a5ad

Please sign in to comment.