Closed techpines closed 8 years ago
you can add .eslintignore
file with all the ignores.
http://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories
Thanks @gyandeeps , and I also found that this worked:
eslint: {
src: ['src/**/*.js', '!src/**/vendor/*.js']
}
Which I think is a grunt default feature.
Is there any way to ignore files?
I have something like this:
But I also have folder called
vendor
for third party libs that is in the same folder. Is there any way to ignore that folder?