Feature Request
Pre-commit is excellent for standardizing checks across an organization's repositories. Other pre-commits use conditionals to SKIP checks if they are unnecessary. Poetry's pre-commits, however, will fail if pyproject.toml/poetry.lock dont exist in a repo,
Current behavior
pre-commits for poetry fail if poetry related files are missing
Ideal behavior
pre-commits for poetry SKIP gracefully if poetry related files are missing
But why?
So .pre-commit-config.yaml files can be consistent across all repos for an organization.
Feature Request
Pre-commit is excellent for standardizing checks across an organization's repositories. Other pre-commits use conditionals to
SKIPchecks if they are unnecessary. Poetry's pre-commits, however, will fail if pyproject.toml/poetry.lock dont exist in a repo,Current behavior
pre-commits for poetry fail if poetry related files are missing
Ideal behavior
pre-commits for poetry
SKIPgracefully if poetry related files are missingBut why?
So
.pre-commit-config.yamlfiles can be consistent across all repos for an organization.