I've got TSLint running nicely in my IDE and everything is great! However when I run npm run tslint
it throws errors on some of my .svg
and .scss
files. It shouldn't be running on that and it doesn't run those in my IDE so what's up?
Here's my package.json
script:
"scripts": {
"lint": "tslint ./src/*",
},
Can I edit that script to ignore .svg
and .scss
files?