Vscodeでtslintを使用してtest
フォルダーフォームlintingを除外したいです。したがって、tslint.json構成ファイルに除外を配置しました。残念ながら、excludeステートメントは機能していません。除外を設定する方法を知っている人はいますか?
{
"exclude": "tests/**/*.ts",
"rulesDirectory": ["node_modules/tslint-Microsoft-contrib"],
"rules": {
"export-name": true,
...
}
}
これはオープン機能のリクエストのようです。詳細情報はここにあります: https://github.com/palantir/tslint/issues/7
Update:tslintをエディター/ lintingとしてVSCodeを使用する場合は、VSCode構成に以下を追加できます。
// Configure glob patterns of file paths to exclude from linting
"tslint.exclude": "**/PATH_eg_TESTS/**/*.ts"
最新の更新:これはtslint.jsonで設定できるようになりました(次の構成はtslint 5.11で動作します)
{
"linterOptions": {
"exclude": [
"bin",
"build",
"config",
"coverage",
"node_modules"
]
}
}