mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-07 05:26:53 +00:00
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:
parent
d43d498d41
commit
eaa57304ce
1 changed files with 1 additions and 0 deletions
|
|
@ -11,6 +11,7 @@ EXCLUDE = (
|
|||
".tox",
|
||||
".eggs",
|
||||
"*.egg",
|
||||
"node_modules",
|
||||
)
|
||||
IGNORE = ("E121", "E123", "E126", "E226", "E24", "E704", "W503", "W504")
|
||||
SELECT = ("E", "F", "W", "C90")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue