Is there any tool for adding white spaces for Typescript?

时间:2016-02-03 03:47:48

标签: typescript whitespace

I'm migrating some codes from JS to Typescript. And quite annoyed by errors about white spaces. Like spaces after comments, and around a equal.

I understand it is fairly good and makes sense. But I think there is a automated tool or plugins for white spaces. Please advice me a good solution.

[00:15:40] [gulp-tslint] error app/world/world.component.ts[53, 20]: missing whitespace

1 个答案:

答案 0 :(得分:1)

And quite annoyed by errors about white spaces. Like spaces after comments, and around a equal.

TypeScript does not error on these. Perhaps you are using tslint.

Fix

相关问题