标签: typescript tslint
我试图为模型建立自定义规则,所以我试图排除其余部分:
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] { if (!sourceFile.fileName.endsWith(".model.ts")) { return; } return this.applyWithWalker(new NoPropertysWalker(sourceFile, this.getOptions())); }