有什么方法可以配置tslint
以在通常情况下期望空格,但是在check-module
(例如:import)情况下特别警告空白。
我们存在一些不一致之处,因为不同的工具以不同的间距生成/复制。
import {ComponentFixture} from "@angular/core/testing";
import { DebugElement } from "@angular/core"; // <-- Based on what I want to configure, this should generate white-space warning
我不确定这是否足够清楚,请让我尝试使用config展示一下这个想法,
是否存在类似这样的内容(tslint.config
):
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type"
],
"whitespace": [
false,
"check-module"
],
我确定我不是第一个遇到此问题的人。任何参考/提示都将有所帮助。