Merge pull request #12 from Narsil/master

Enabling possibility to add custom arguments to clippy too.
This commit is contained in:
Fadi Hadzh 2020-09-11 17:03:48 +03:00 committed by GitHub
commit 79fb5df709
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
entry: cargo fmt
language: system
types: [rust]
args: ['--']
args: ["--"]
- id: cargo-check
name: cargo check
description: Check the package for errors.
@ -15,7 +15,8 @@
- id: clippy
name: clippy
description: Lint rust sources
entry: cargo clippy -- -D warnings
entry: cargo clippy
language: system
args: ["--", "-D", "warnings"]
types: [rust]
pass_filenames: false