我想将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
答案 0 :(得分:6)
排除选项要求=
,因此:
tslint src/**/*.ts --exclude=src/**/*.d.ts
或将忽略部分包装成引号:
tslint src/**/*.ts --exclude "src/**/*.d.ts"
将按预期工作。
答案 1 :(得分:0)
一个非常简单的解决方案是创建一个 .eslintignore
如下:
*.d.ts
包括您希望忽略的任何其他文件,例如:
node_modules
.storybook
dist
*.d.ts