chore(lint): switch to eslint

This commit is contained in:
Julian Tölle 2021-05-25 18:12:42 +02:00
parent f56548e432
commit 9b96d0fab4
29 changed files with 1609 additions and 113 deletions

View file

@ -18,13 +18,13 @@ export class Track {
@Column()
name: string;
@ManyToOne((type) => Album, (album) => album.tracks)
@ManyToOne(() => Album, (album) => album.tracks)
album?: Album;
@ManyToMany((type) => Artist)
@ManyToMany(() => Artist)
@JoinTable({ name: "track_artists" })
artists?: Artist[];
@Column((type) => SpotifyLibraryDetails)
@Column(() => SpotifyLibraryDetails)
spotify?: SpotifyLibraryDetails;
}