Add pre-commit hook

This commit is contained in:
Mikhail 2024-03-31 13:35:23 +02:00
parent 717855fa5d
commit bf5460f495
1 changed files with 29 additions and 0 deletions

29
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,29 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-toml
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: trailing-whitespace
- repo: local
hooks:
- id: fmt
name: fmt
description: Format
entry: cargo fmt
language: system
args:
- --all
types: [ rust ]
pass_filenames: false
- id: check
name: check
description: Check
entry: cargo check
language: system
types: [ rust ]
pass_filenames: false