You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Black is becoming more and more popular. It is unlikely that developers at this time spend time formatting code manually and instead trust their formating tools to keep formatting consistent (black, autopep8, yapf).
Therefore the dependency on pycodestyle is something many do not need for their projects, while it adds to run time. This is significant for big projects. Despite filtering away all E and W warnings, flake8 will still invoke pycodestyle, and filter warnings after.
So, the suggestion is for flake8 by default not depend on pycodestyle, and only if pycodestyle is installed will flake8 then load and run its pycodestyle plugin.
The text was updated successfully, but these errors were encountered:
Hi.
Black is becoming more and more popular. It is unlikely that developers at this time spend time formatting code manually and instead trust their formating tools to keep formatting consistent (black, autopep8, yapf).
Therefore the dependency on pycodestyle is something many do not need for their projects, while it adds to run time. This is significant for big projects. Despite filtering away all E and W warnings, flake8 will still invoke pycodestyle, and filter warnings after.
So, the suggestion is for flake8 by default not depend on pycodestyle, and only if pycodestyle is installed will flake8 then load and run its pycodestyle plugin.
The text was updated successfully, but these errors were encountered: