Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

26 lignes
630B

  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: v2.4.0
  6. hooks:
  7. - id: trailing-whitespace
  8. - id: end-of-file-fixer
  9. - id: check-yaml
  10. - id: check-added-large-files
  11. # - repo: https://github.com/pycqa/pylint
  12. # rev: pylint-2.5.3
  13. # hooks:
  14. # - id: pylint
  15. # stages: [commit]
  16. # additional_dependencies: [pylint-flask]
  17. - repo: local
  18. hooks:
  19. - id: pylint
  20. name: pylint
  21. entry: pylint
  22. language: system
  23. types: [python]