We can exclude node_modules in this way.
"lint": [
{
"project": "src/main/webapp/app/file.json",
"exclude": "**/node_modules/**"
}
]
But how to exclude all files under a directory?
I tried below way. It is not working
"exclude": [
"**/*whatever.pipe.ts",
"**/*whatever_else.component.ts"
]
So this is my current path for the directory "src/main/assets/js/ngx-typeahead"
I have to exclude all the files under this directory from linting.
How can i achieve that?
Any suggestions would be appreciated.