If i have a packge.json
file like this:
{
"scripts": {
"lint": "standard | snazzy"
},
"standard": {
"ignore": [
"some-dir-name"
]
}
}
Is the package supposed to respect the ignore
setting I have in the standard
config? I don't get any errors from running npm run lint
because some-dir-name
is ignored, but when I open a file in some-dir-name
in Atom, it shows linting errors within the editor. Is there a way to not have the linter run in files that should be ignored?