add google style linter

This commit is contained in:
Антон
2024-01-13 17:55:44 +03:00
parent dc11ff8a22
commit b0435fe1e1
3 changed files with 9 additions and 5 deletions

View File

@ -3,12 +3,13 @@ import { CommonModule } from '@angular/common';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
selector: 'il-root',
standalone: true,
imports: [CommonModule, RouterOutlet],
templateUrl: './app.component.html',
styleUrl: './app.component.sass'
})
export class AppComponent {
export class AppComponent
{
title = 'imlegend-client';
}