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
Not sure how much linting for errors or issues Black does, or if it's mostly just a formatter (ESLint vs Prettier), so maybe we need to add other Python linting as well.
The text was updated successfully, but these errors were encountered:
Do we use black in other python code-bases? I've always used flake8 for python code.
Black is mostly a Code formatter, making sure all code is formatted consistently across a project, kinda like Prettier for JS.
So it's for a different purpose than Flake8.
https://black.readthedocs.io/en/stable/installation_and_usage.html#usage
black . --exclude venv
Not sure how much linting for errors or issues Black does, or if it's mostly just a formatter (ESLint vs Prettier), so maybe we need to add other Python linting as well.
The text was updated successfully, but these errors were encountered: