我正在使用WebStorm中的TypeScript安静一段时间,最近我将TSLint添加到我的设置中以编写更好的代码。我成功地将它集成到IDE(WebStorm 2016)中,但我对结合TSLint格式规则的IDE格式化程序有不好的经验。
例如我写道:
let bar: foo; // fine by tslint standarts
然后我按 Ctrl + Alt + L 自动格式化所有内容我得到:
let bar:foo; // without space between the variable ":"
// and its type the tslint complains
我还没有在网上找到任何解决方案,也找不到在IDE中更改此行为的手动方式。
任何帮助将不胜感激! :)