pre-commit-hooks/.pre-commit-hooks.yaml
Matej Focko 0341881984
fix(rust): add wrapper for running clippy
Add wrapper for running clippy on each file separately, since
‹clippy-driver› accepts only one file at a time.

Signed-off-by: Matej Focko <mfocko@redhat.com>
2024-02-24 15:21:01 +01:00

27 lines
514 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# C++
- id: clang-format
name: clang-format
description: Format C/C++ sources with clang-format.
entry: clang-format -i
language: system
types_or:
- c
- c++
args:
- "-style=file"
# Rust
- id: rust-fmt
name: rustfmt
description: Format Rust sources with rustfmt.
entry: rustfmt
language: system
types:
- rust
- id: rust-clippy
name: clippy
description: Lint Rust sources with clippy.
entry: rust/clippy-driver.sh
language: system
types:
- rust