Tslint - 忽略包含字符串的文件:“spec”?

时间:2017-08-07 13:25:06

标签: typescript typescript2.0 tslint

我需要忽略包含spec int名称的所有文件,例如MyStuff.spec.ts

如何让tslint忽略这类文件?

1 个答案:

答案 0 :(得分:1)

tsconfig中的

json add:

  "exclude":[
    "node_modules",
    "**/__test*", //exclude all that *__test*
    "**/*.spec.ts" // exclude all that contain "spec.ts" in name
  ]