Revert "Forbid clippy warnings"

This reverts commit c0942e12a3.

1 | #![cfg_attr(feature = "cargo-clippy", deny(clippy::all))]
  |                                            ^^^^^^^^^^^
error[E0658]: scoped lint `clippy::all` is experimental (see issue #44690)
This commit is contained in:
Roey Darwish Dror
2018-10-29 14:41:45 +02:00
parent d081991edc
commit 4c16a34053
2 changed files with 1 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ set -ex
# TODO This is the "test phase", tweak it as you see fit
main() {
cargo fmt --all -- --check
cargo clippy --all-targets --all-features
cargo clippy --all-targets --all-features -- -D warnings
cross check --target $TARGET
cross check --target $TARGET --release

View File

@@ -1,5 +1,3 @@
#![cfg_attr(feature = "cargo-clippy", deny(clippy::all))]
extern crate directories;
extern crate failure;
extern crate which;