.pre-commit-config.yaml 312 B

1234567891011121314
  1. repos:
  2. - repo: https://github.com/pycqa/pylint
  3. rev: v3.3.1
  4. hooks:
  5. - id: pylint
  6. args:
  7. - -d import-error
  8. - -d duplicate-code
  9. - -d too-many-positional-arguments
  10. - repo: https://github.com/ambv/black
  11. rev: 24.10.0
  12. hooks:
  13. - id: black
  14. language_version: python3