我想test在vscode中用tslint 排除文件夹形式.所以我在我的tslint.json配置文件中放了一个exclude.不幸的是,exclude语句不起作用.有没有人知道如何设置排除?
{
"exclude": "tests/**/*.ts",
"rulesDirectory": ["node_modules/tslint-microsoft-contrib"],
"rules": {
"export-name": true,
...
}
}
Run Code Online (Sandbox Code Playgroud)