correct linting
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import {Component, Input, OnInit} from '@angular/core';
|
||||
import {Song} from "../../models/song";
|
||||
import {Song} from '../../models/song';
|
||||
|
||||
@Component({
|
||||
selector: 'app-list-item',
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import {async, ComponentFixture, fakeAsync, TestBed, tick} from '@angular/core/testing';
|
||||
|
||||
import {SongListComponent} from './song-list.component';
|
||||
import {of} from "rxjs";
|
||||
import {SongService} from "../services/song.service";
|
||||
import {NO_ERRORS_SCHEMA} from "@angular/core";
|
||||
import {of} from 'rxjs';
|
||||
import {SongService} from '../services/song.service';
|
||||
import {NO_ERRORS_SCHEMA} from '@angular/core';
|
||||
|
||||
describe('SongListComponent', () => {
|
||||
let component: SongListComponent;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {Component, OnInit} from '@angular/core';
|
||||
import {SongService} from "../services/song.service";
|
||||
import {Song} from "../models/song";
|
||||
import {SongService} from '../services/song.service';
|
||||
import {Song} from '../models/song';
|
||||
|
||||
@Component({
|
||||
selector: 'app-songs',
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import {NgModule} from '@angular/core';
|
||||
import {CommonModule} from '@angular/common';
|
||||
import {SongListComponent} from "./song-list.component";
|
||||
import {SongListComponent} from './song-list.component';
|
||||
import {ListItemComponent} from './list-item/list-item.component';
|
||||
import {CardModule} from "../../widget-modules/components/card/card.module";
|
||||
import {SongTypeTranslaterModule} from "../../widget-modules/pipes/song-type-translater/song-type-translater.module";
|
||||
import {CardModule} from '../../widget-modules/components/card/card.module';
|
||||
import {SongTypeTranslaterModule} from '../../widget-modules/pipes/song-type-translater/song-type-translater.module';
|
||||
|
||||
|
||||
@NgModule({
|
||||
|
||||
Reference in New Issue
Block a user