Merge pull request #12 from Narsil/master
Enabling possibility to add custom arguments to clippy too.
This commit is contained in:
commit
79fb5df709
|
@ -4,7 +4,7 @@
|
||||||
entry: cargo fmt
|
entry: cargo fmt
|
||||||
language: system
|
language: system
|
||||||
types: [rust]
|
types: [rust]
|
||||||
args: ['--']
|
args: ["--"]
|
||||||
- id: cargo-check
|
- id: cargo-check
|
||||||
name: cargo check
|
name: cargo check
|
||||||
description: Check the package for errors.
|
description: Check the package for errors.
|
||||||
|
@ -15,7 +15,8 @@
|
||||||
- id: clippy
|
- id: clippy
|
||||||
name: clippy
|
name: clippy
|
||||||
description: Lint rust sources
|
description: Lint rust sources
|
||||||
entry: cargo clippy -- -D warnings
|
entry: cargo clippy
|
||||||
language: system
|
language: system
|
||||||
|
args: ["--", "-D", "warnings"]
|
||||||
types: [rust]
|
types: [rust]
|
||||||
pass_filenames: false
|
pass_filenames: false
|
||||||
|
|
Loading…
Reference in a new issue