.pre-commit-config.yaml 412 B

1234567891011121314
  1. # See https://pre-commit.com for more information
  2. # See https://pre-commit.com/hooks.html for more hooks
  3. repos:
  4. - repo: https://github.com/pre-commit/pre-commit-hooks
  5. rev: v4.4.0
  6. hooks:
  7. - id: trailing-whitespace
  8. - id: end-of-file-fixer
  9. - repo: https://github.com/astral-sh/ruff-pre-commit
  10. rev: v0.4.1
  11. hooks:
  12. - id: ruff
  13. args: [ "--select", "I", "--fix" ]
  14. - id: ruff-format