We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pre-commit
It would be a lot easier to use pre-commit if it used remote repos instead of local. For example:
local
repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.3.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/psf/black rev: 22.10.0 hooks: - id: black
Instead of something like:
repos: - repo: local hooks: - id: bandit name: bandit entry: bandit language: system types: [python] require_serial: true args: ["-c", "bandit.yml"]
The text was updated successfully, but these errors were encountered:
pyproject.toml
Successfully merging a pull request may close this issue.
It would be a lot easier to use
pre-commit
if it used remote repos instead oflocal
. For example:Instead of something like:
The text was updated successfully, but these errors were encountered: