I added a comment in https://github.com/Microsoft/TypeScript/pull/18457#issuecomment-339097980 but I think that nobody saw it. It would be nice if I could put the `@ts-ignore` at the same line, to leave the code more readable ```ts let v1: string = 1; // @ts-ignore let v2: string = 2; // @ts-ignore let v3: string = 3; // @ts-ignore let v4: string = 4; // @ts-ignore let v5: string = 5; // @ts-ignore let v6: string = 6; // @ts-ignore ``` instead of: ```ts // @ts-ignore let v1: string = 1; // @ts-ignore let v2: string = 2; // @ts-ignore let v3: string = 3; // @ts-ignore let v4: string = 4; // @ts-ignore let v5: string = 5; // @ts-ignore let v6: string = 6; ```