Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude tests/cases/* from tslint #31095

Merged
merged 2 commits into from Apr 24, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions tslint.json
@@ -1,6 +1,11 @@
{
"extends": "tslint:latest",
"rulesDirectory": "built/local/tslint/rules",
"linterOptions": {
"exclude": [
"tests/cases/**/*"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May be it should be everything in tests folder instead

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems reasonable. Done.

]
},
"rules": {
"no-unnecessary-type-assertion": true,

Expand Down