ワークフローにtslintを追加します。私は経由でインストール:tslintを使用しているときに* .d.tsファイルを無視する方法?
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
http://stackoverflow.com/questions/34578677/how-to-ignore-a-particular-directory-or-file-for-tslint – k0pernikus