.pre-commit-config.yaml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. fail_fast: false
  2. repos:
  3. - repo: https://github.com/pre-commit/pre-commit-hooks
  4. rev: v4.3.0
  5. hooks:
  6. - id: check-byte-order-marker
  7. - id: check-case-conflict
  8. - id: check-merge-conflict
  9. - id: check-symlinks
  10. - id: check-yaml
  11. - id: end-of-file-fixer
  12. - id: mixed-line-ending
  13. - id: trailing-whitespace
  14. - repo: https://github.com/psf/black
  15. rev: 22.10.0
  16. hooks:
  17. - id: black
  18. - repo: local
  19. hooks:
  20. - id: cargo-fmt
  21. name: cargo fmt
  22. description: Format files with rustfmt.
  23. entry: bash -c 'cargo fmt -- --check'
  24. language: rust
  25. files: \.rs$
  26. args: []
  27. - id: typos
  28. name: typos
  29. description: check typo
  30. entry: bash -c 'typos'
  31. language: rust
  32. files: \.*$
  33. pass_filenames: false
  34. - id: cargo-check
  35. name: cargo check
  36. description: Check the package for errors.
  37. entry: bash -c 'cargo check --target riscv64imac-unknown-none-elf --all --no-default-features'
  38. language: rust
  39. files: \.rs$
  40. pass_filenames: false
  41. - id: cargo-clippy
  42. name: cargo clippy
  43. description: Lint rust sources
  44. entry: bash -c 'cargo clippy --target riscv64imac-unknown-none-elf --all --no-default-features -- -D warnings'
  45. language: rust
  46. files: \.rs$
  47. pass_filenames: false