Skip to content

Commit

Permalink
fix(ci): fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ls-infra committed Oct 13, 2024
1 parent 9b74843 commit 60e8b65
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/examples/src/json/server/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ export const startMockHttpServerForSavingCodeFromEditor = () => {
app.listen(PORT, () => {
console.log(`JSON server running on port ${PORT}`);
});
}
};
4 changes: 2 additions & 2 deletions verify/angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import { SaveCodeService } from '../save-code.service';
import { firstValueFrom } from 'rxjs';
@Component({
selector: 'app-root',
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: true,
imports: [MonacoAngularWrapperComponent],
})
Expand Down
5 changes: 5 additions & 0 deletions verify/angular/src/save-code.service.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/* --------------------------------------------------------------------------------------------
* Copyright (c) 2024 TypeFox and others.
* Licensed under the MIT License. See LICENSE in the package root for license information.
* ------------------------------------------------------------------------------------------ */

import { inject, Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Injectable({ providedIn: 'root' })
Expand Down

0 comments on commit 60e8b65

Please sign in to comment.