# Bussard ## An RSS reader
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

.pre-commit-config.yaml 841B

123456789101112131415161718192021222324252627
  1. repos:
  2. - repo: https://github.com/pre-commit/pre-commit-hooks
  3. rev: v2.3.0
  4. hooks:
  5. - id: check-yaml
  6. - id: check-xml
  7. - id: check-ast
  8. - id: check-json
  9. - id: check-toml
  10. - id: debug-statements
  11. - id: end-of-file-fixer
  12. - id: trailing-whitespace
  13. - id: check-merge-conflict
  14. - id: detect-private-key
  15. - id: no-commit-to-branch
  16. args: [--branch, main]
  17. - repo: https://github.com/psf/black
  18. rev: 19.10b0
  19. hooks:
  20. - id: black
  21. # https://github.com/psf/black/issues/2964#issuecomment-1080974737
  22. additional_dependencies: ['click==8.0.4']
  23. - repo: https://github.com/pycqa/isort
  24. rev: 5.11.5
  25. hooks:
  26. - id: isort
  27. args: ["--profile", "black"]