From ba8c3970b0cc056dcee721340d6f750e7538098e Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 31 Dec 2018 22:51:38 -0500 Subject: [PATCH] Use tool lint naming in clippy invocation --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0fabcb7c..83949706 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,17 +55,17 @@ matrix: name: Clippy script: - rustup component add clippy-preview || travis_terminate 0 - - cargo clippy -- -Dclippy + - cargo clippy -- -D clippy::all - cd "${TRAVIS_BUILD_DIR}/serde" - - cargo clippy --features rc,unstable -- -Dclippy + - cargo clippy --features rc,unstable -- -D clippy::all - cd "${TRAVIS_BUILD_DIR}/serde_derive" - - cargo clippy -- -Dclippy + - cargo clippy -- -D clippy::all - cd "${TRAVIS_BUILD_DIR}/serde_test" - - cargo clippy -- -Dclippy + - cargo clippy -- -D clippy::all - cd "${TRAVIS_BUILD_DIR}/test_suite" - - cargo clippy --tests --features unstable -- -Dclippy + - cargo clippy --tests --features unstable -- -D clippy::all - cd "${TRAVIS_BUILD_DIR}/test_suite/no_std" - - cargo clippy -- -Dclippy + - cargo clippy -- -D clippy::all - rust: nightly name: Emscripten