We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3df5b44 + 65b58de commit e270050Copy full SHA for e270050
README.md
@@ -76,6 +76,20 @@ cargo run --bin cargo-clippy --manifest-path=path_to_clippys_Cargo.toml
76
*[Note](https://github.com/rust-lang-nursery/rust-clippy/wiki#a-word-of-warning):*
77
Be sure that Clippy was compiled with the same version of rustc that cargo invokes here!
78
79
+### Travis CI
80
+
81
+You can add Clippy to Travis CI in the same way you use it locally:
82
83
+```yml
84
+- rust: stable
85
+ before_script:
86
+ - rustup component add clippy-preview
87
+ script:
88
+ - cargo clippy
89
+ - cargo test
90
+ # etc.
91
+```
92
93
## Configuration
94
95
Some lints can be configured in a TOML file named `clippy.toml` or `.clippy.toml`. It contains a basic `variable = value` mapping eg.
0 commit comments