-
Notifications
You must be signed in to change notification settings - Fork 285
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
feat: pre-commit-python-hooks #159
Conversation
.pre-commit-config.yaml
Outdated
- id: isort | ||
- repo: https://github.com/psf/black | ||
rev: 22.12.0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 6.0.0 |
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.
Runs with tool-specific config defined in pyproject.toml
.
Tried to incorporate |
Sets up pre-commit hook framework. Currently set up for formatting Python code, but in theory should work for the UI code as well.
This framework:
.pre-commit-config.yaml
in the pipeline, can consolidate some of our actions and simplify our pipeline,