.pre-commit-config.yaml 355 B

1234567891011121314151617181920
  1. default_language_version:
  2. python: python3
  3. exclude: |
  4. (?x)^(
  5. 3rdparty/.*|
  6. bindings/.*|
  7. include/bgfx/c99/bgfx\.h|
  8. .*\.bin\.h|
  9. .*\.ttf\.h$
  10. )
  11. repos:
  12. - repo: local
  13. hooks:
  14. - id: file-format
  15. name: file-format
  16. language: python
  17. entry: python .github/workflows/file_format.py
  18. types_or: [text]