-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: nitpick development tools #497
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
Análise da árvore de códigoNenhum problema encontrado! |
code |= run(["black", "--check", "."]) | ||
code |= run(["isort", "--check-only", "."]) | ||
code |= run(["autoflake", "--check", "--recursive", "--quiet", "."]) | ||
code |= run(["flake8", "--exclude", "pipelines/{{cookiecutter.project_name}}", "."]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
só de curiosa, algum motivo especifico pra só o flake8 ter o exclude dentro desse arquivo mesmo e não no pyproject.toml?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a ideia era migrar a configuração pro pyproject.toml
, mas o flake8 ainda não tem essa possibilidade de configuração, diferente dos demais
Update some development workflows and tools