mirror of
https://github.com/eza-community/eza.git
synced 2025-07-07 11:25:36 +00:00
18 lines
557 B
YAML
18 lines
557 B
YAML
# SPDX-FileCopyrightText: 2024 Christina Sørensen
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: rust-linting
|
|
name: Rust linting
|
|
description: Run rustfmt on included files
|
|
entry: cargo fmt --
|
|
types: [file, rust]
|
|
language: system
|
|
- id: rust-clippy
|
|
name: Rust clippy
|
|
description: Run clippy on included files
|
|
pass_filenames: false
|
|
entry: cargo clippy --workspace --all-targets --all-features
|
|
types: [file, rust]
|
|
language: system
|