Add NPM node_modules to default exclude list

Projects frequently have Python and JavaScript coexisting. NPM is the de
facto standard package manager for JavaScript. Ignore third party
packages by default so projects don't need configure this.
This commit is contained in:
Jon Dufresne 2019-08-08 10:01:18 -07:00
parent d43d498d41
commit eaa57304ce

View file

@ -11,6 +11,7 @@ EXCLUDE = (
".tox",
".eggs",
"*.egg",
"node_modules",
)
IGNORE = ("E121", "E123", "E126", "E226", "E24", "E704", "W503", "W504")
SELECT = ("E", "F", "W", "C90")