使用 tslint 时如何忽略 *.d.ts 文件?

Posted

技术标签:

【中文标题】使用 tslint 时如何忽略 *.d.ts 文件?【英文标题】:How to ignore *.d.ts files when using tslint? 【发布时间】:2017-01-27 02:38:59 【问题描述】:

我想将 tslint 添加到我的工作流程中。我通过以下方式安装它:

npm install tslint tslint-config-ms-recommended --save-dev

而我的tslint.json 看起来像:


    "extends": "tslint-config-ms-recommended"

但当我跑步时:

./node_modules/.bin/tslint src/**/*.ts

它还会检查很多确定类型的文件,例如:

src/interfaces/highland.d.ts[621, 1]: space indentation expected
src/interfaces/highland.d.ts[622, 1]: space indentation expected
src/interfaces/highland.d.ts[635, 1]: space indentation expected

污染输出。

我只想检查我的 *.ts 文件,并正在寻找一种方法来忽略其他类型。

我看到有一个--exclude 选项,但在我运行时它仍然显示 d.ts 文件:

./node_modules/.bin/tslint src/**/*.ts --exclude src/**/*.d.ts

【问题讨论】:

***.com/questions/34578677/… 【参考方案1】:

排除选项需要=,因此:

tslint src/**/*.ts --exclude=src/**/*.d.ts

或将忽略部分括在引号中:

tslint src/**/*.ts --exclude "src/**/*.d.ts"

将按预期工作。

【讨论】:

另一种选择是使用以下正则表达式:src/**/*[^.d$].ts【参考方案2】:

一个非常简单的解决方案是创建一个.eslintignore,如下所示:

*.d.ts

包括您希望忽略的任何其他文件,例如:

node_modules
.storybook
dist
*.d.ts

【讨论】:

以上是关于使用 tslint 时如何忽略 *.d.ts 文件?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 eslint/tslint 中配置忽略单行语句?

打字稿 tsc --declaration

如何使用 tslint 对整个文件夹进行 lint

静音/忽略来自 TypeScript tsc 的 TS2307 错误

Eslint/Tslint 配置帮助(不包括文件)

如果库的实现未与 TS 项目集成,如何使用 d.ts 文件导出的 const 类型?