1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- fail_fast: false
- repos:
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.3.0
- hooks:
- - id: check-byte-order-marker
- - id: check-case-conflict
- - id: check-merge-conflict
- - id: check-symlinks
- - id: check-yaml
- - id: end-of-file-fixer
- - id: mixed-line-ending
- - id: trailing-whitespace
- - repo: https://github.com/psf/black
- rev: 22.10.0
- hooks:
- - id: black
- - repo: local
- hooks:
- - id: cargo-fmt
- name: cargo fmt
- description: Format files with rustfmt.
- entry: bash -c 'cargo fmt -- --check'
- language: rust
- files: \.rs$
- args: []
- - id: typos
- name: typos
- description: check typo
- entry: bash -c 'typos'
- language: rust
- files: \.*$
- pass_filenames: false
- - id: cargo-check
- name: cargo check
- description: Check the package for errors.
- entry: bash -c 'cargo check --target riscv64imac-unknown-none-elf --all --no-default-features'
- language: rust
- files: \.rs$
- pass_filenames: false
- - id: cargo-clippy
- name: cargo clippy
- description: Lint rust sources
- entry: bash -c 'cargo clippy --target riscv64imac-unknown-none-elf --all --no-default-features -- -D warnings'
- language: rust
- files: \.rs$
- pass_filenames: false
|