Skip to content

Commit 60e8b65

Browse files
committed
fix(ci): fix lint errors
1 parent 9b74843 commit 60e8b65

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

packages/examples/src/json/server/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ export const startMockHttpServerForSavingCodeFromEditor = () => {
4343
app.listen(PORT, () => {
4444
console.log(`JSON server running on port ${PORT}`);
4545
});
46-
}
46+
};

verify/angular/src/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import { SaveCodeService } from '../save-code.service';
1111
import { firstValueFrom } from 'rxjs';
1212
@Component({
1313
selector: 'app-root',
14-
templateUrl: "./app.component.html",
15-
styleUrls: ["./app.component.scss"],
14+
templateUrl: './app.component.html',
15+
styleUrls: ['./app.component.scss'],
1616
standalone: true,
1717
imports: [MonacoAngularWrapperComponent],
1818
})

verify/angular/src/save-code.service.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/* --------------------------------------------------------------------------------------------
2+
* Copyright (c) 2024 TypeFox and others.
3+
* Licensed under the MIT License. See LICENSE in the package root for license information.
4+
* ------------------------------------------------------------------------------------------ */
5+
16
import { inject, Injectable } from '@angular/core';
27
import { HttpClient } from '@angular/common/http';
38
@Injectable({ providedIn: 'root' })

0 commit comments

Comments
 (0)