diff options
| author | Philipp Hansch <dev@phansch.net> | 2018-12-02 12:35:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-02 12:35:14 +0100 |
| commit | b06594e650100e5d9705e66ae548d9f158f52e9f (patch) | |
| tree | 6f8b142e74ffd8b1f8e1e60609f8b1b79b8060e9 | |
| parent | e048fab81ef5095fed4602474f85569fab2b7426 (diff) | |
| parent | 40d58f9195c7dbee117ad3a918768a489b51dc74 (diff) | |
| download | rust-b06594e650100e5d9705e66ae548d9f158f52e9f.tar.gz rust-b06594e650100e5d9705e66ae548d9f158f52e9f.zip | |
Merge pull request #3483 from phansch/mention_triage_procedure_in_contributing
Mention triage procedure in contributing.md
| -rw-r--r-- | CONTRIBUTING.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 26e599c9ebb..7ee74448a09 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,6 +22,7 @@ All contributors are expected to follow the [Rust Code of Conduct](http://www.ru * [Linting Clippy with your local changes](#linting-clippy-with-your-local-changes) * [How Clippy works](#how-clippy-works) * [Fixing nightly build failures](#fixing-build-failures-caused-by-rust) +* [Issue and PR Triage](#issue-and-pr-triage) * [Contributions](#contributions) ## Getting started @@ -254,6 +255,20 @@ rustup override set master cargo test ``` +## Issue and PR triage + +Clippy is following the [Rust triage procedure][triage] for issues and pull +requests. + +However, we are a smaller project with all contributors being volunteers +currently. Between writing new lints, fixing issues, reviewing pull requests and +responding to issues there may not always be enough time to stay on top of it +all. + +Our highest priority is fixing [crashes][l-crash] and [bugs][l-bug]. We don't +want Clippy to crash on your code and we want it to be as reliable as the +suggestions from Rust compiler errors. + ## Contributions Contributions to Clippy should be made in the form of GitHub pull requests. Each pull request will @@ -282,3 +297,6 @@ or the [MIT](http://opensource.org/licenses/MIT) license. [clippy_rfc]: https://github.com/rust-lang/rfcs/blob/master/text/2476-clippy-uno.md [rfc_stability]: https://github.com/rust-lang/rfcs/blob/master/text/2476-clippy-uno.md#stability-guarantees [rfc_lint_cats]: https://github.com/rust-lang/rfcs/blob/master/text/2476-clippy-uno.md#lint-audit-and-categories +[triage]: https://forge.rust-lang.org/triage-procedure.html +[l-crash]: https://github.com/rust-lang/rust-clippy/labels/L-crash%20%3Aboom%3A +[l-bug]: https://github.com/rust-lang/rust-clippy/labels/L-bug%20%3Abeetle%3A |
