diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..afdeace7 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,29 @@ +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v2.2.3 + hooks: + - id: check-yaml + - id: end-of-file-fixer + - id: trailing-whitespace + +- repo: local + hooks: + - id: fmt + name: fmt + language: system + types: [file, rust] + entry: cargo fmt -- --check + + - id: clippy + name: clippy + language: system + types: [file, rust] + entry: cargo clippy --all-targets --all + pass_filenames: false + + - id: test + name: test + language: system + files: '\.rs$' + entry: cargo test --lib + pass_filenames: false