From 90136af516abc80703b5d7f063aa87c1c1082563 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Wed, 25 Nov 2020 19:41:40 +0100 Subject: [PATCH] Make the linter happier ref #3 --- src/models/Track.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/models/Track.ts b/src/models/Track.ts index b7a3cd7..8d2b57c 100644 --- a/src/models/Track.ts +++ b/src/models/Track.ts @@ -1,14 +1,14 @@ -import {Entity, PrimaryGeneratedColumn, Column} from "typeorm"; +import { Entity, PrimaryGeneratedColumn, Column } from "typeorm"; @Entity() export class Track { @PrimaryGeneratedColumn() - id!: number; + id: number; @Column() - name!: string; + name: string; //Length in meters @Column() - length!: string; -} \ No newline at end of file + length: string; +}