You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.pre-commit-config.yaml 470B

12345678910111213141516171819
  1. repos:
  2. - repo: https://github.com/pre-commit/pre-commit-hooks
  3. rev: v4.6.0
  4. hooks:
  5. - id: check-yaml
  6. - id: check-json
  7. - id: end-of-file-fixer
  8. - id: trailing-whitespace
  9. - id: check-case-conflict
  10. - id: check-merge-conflict
  11. - id: mixed-line-ending
  12. - id: check-symlinks
  13. - repo: https://github.com/astral-sh/ruff-pre-commit
  14. rev: v0.11.6
  15. hooks:
  16. - id: ruff
  17. args: [ --fix ]
  18. - id: ruff-format