2020-08-20 08:11:05 +01:00
|
|
|
- id: fmt
|
|
|
|
name: fmt
|
|
|
|
description: Format files with cargo fmt.
|
|
|
|
entry: cargo fmt
|
|
|
|
language: system
|
|
|
|
types: [rust]
|
|
|
|
args: ["--"]
|
|
|
|
- id: cargo-check
|
|
|
|
name: cargo check
|
|
|
|
description: Check the package for errors.
|
|
|
|
entry: cargo check
|
|
|
|
language: system
|
|
|
|
types: [rust]
|
|
|
|
pass_filenames: false
|
|
|
|
- id: clippy
|
|
|
|
name: clippy
|
|
|
|
description: Lint rust sources
|
|
|
|
entry: cargo clippy
|
|
|
|
language: system
|
|
|
|
args: ["--", "-D", "warnings"]
|
|
|
|
types: [rust]
|
|
|
|
pass_filenames: false
|