.pre-commit-config.yaml 515 B

123456789101112131415161718192021222324
  1. repos:
  2. - repo: https://github.com/charliermarsh/ruff-pre-commit
  3. rev: v0.0.244
  4. hooks:
  5. - id: ruff
  6. - repo: https://github.com/RobertCraigie/pyright-python
  7. rev: v1.1.313
  8. hooks:
  9. - id: pyright
  10. args: [reflex, tests]
  11. language: system
  12. - repo: https://github.com/terrencepreilly/darglint
  13. rev: v1.8.1
  14. hooks:
  15. - id: darglint
  16. exclude: '^reflex/reflex.py'
  17. - repo: https://github.com/psf/black
  18. rev: 22.10.0
  19. hooks:
  20. - id: black
  21. args: [reflex, tests]