aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/rust-clippy-driver-support.md
AgeCommit message (Collapse)AuthorFilesLines
2021-10-24Create release notes page for 0.60.Jussi Pakkanen1-6/+0
2021-09-24compilers/rust: Add support for clippyDylan Baker1-0/+6
Clippy is a compiler wrapper for rust that provides an extra layer of linting. It's quite popular, but unfortunately doesn't provide the output of the compiler that it's wrapping in it's output, so we don't detect that clippy is rustc. This small patch adds a new compiler class (that is the Rustc class with a different id) and the necessary logic to detect that clippy is in fact rustc) Fixes: #8767