forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#91590 - flip1995:clippyup, r=Manishearth
Update Clippy Since RLS is now already broken rust-lang#91543 , we shouldn't be blocked by it anymore. I plan to do the RLS update once new rustc-ap packages are released. r? `@Manishearth`
- Loading branch information
Showing
492 changed files
with
9,892 additions
and
3,254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Blank Issue | ||
description: Create a blank issue. | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thank you for filing an issue! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Description | ||
description: > | ||
Please provide a discription of the issue, along with any information | ||
you feel relevant to replicate it. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Version | ||
description: "Rust version (`rustc -Vv`)" | ||
placeholder: | | ||
rustc 1.46.0-nightly (f455e46ea 2020-06-20) | ||
binary: rustc | ||
commit-hash: f455e46eae1a227d735091091144601b467e1565 | ||
commit-date: 2020-06-20 | ||
host: x86_64-unknown-linux-gnu | ||
release: 1.46.0-nightly | ||
LLVM version: 10.0 | ||
render: text | ||
- type: textarea | ||
id: labels | ||
attributes: | ||
label: Additional Labels | ||
description: > | ||
Additional labels can be added to this issue by including the following | ||
command | ||
placeholder: | | ||
@rustbot label +<label> | ||
Common labels for this issue type are: | ||
* C-an-interesting-project | ||
* C-enhancement | ||
* C-question | ||
* C-tracking-issue |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Bug Report | ||
description: Create a bug report for Clippy | ||
labels: ["C-bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thank you for filing a bug report! 🐛 | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Summary | ||
description: > | ||
Please provide a short summary of the bug, along with any information | ||
you feel relevant to replicate the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproducer | ||
attributes: | ||
label: Reproducer | ||
description: Please provide the code and steps to repoduce the bug | ||
value: | | ||
I tried this code: | ||
```rust | ||
<code> | ||
``` | ||
I expected to see this happen: | ||
Instead, this happened: | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Version | ||
description: "Rust version (`rustc -Vv`)" | ||
placeholder: | | ||
rustc 1.46.0-nightly (f455e46ea 2020-06-20) | ||
binary: rustc | ||
commit-hash: f455e46eae1a227d735091091144601b467e1565 | ||
commit-date: 2020-06-20 | ||
host: x86_64-unknown-linux-gnu | ||
release: 1.46.0-nightly | ||
LLVM version: 10.0 | ||
render: text | ||
- type: textarea | ||
id: labels | ||
attributes: | ||
label: Additional Labels | ||
description: > | ||
Additional labels can be added to this issue by including the following | ||
command | ||
placeholder: | | ||
@rustbot label +<label> | ||
Common labels for this issue type are: | ||
* `I-suggestion-causes-error` |
This file was deleted.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
src/tools/clippy/.github/ISSUE_TEMPLATE/false_negative.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Bug Report (False Negative) | ||
description: Create a bug report about missing warnings from a lint | ||
labels: ["C-bug", "I-false-negative"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thank you for filing a bug report! 🐛 | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Summary | ||
description: > | ||
Please provide a short summary of the bug, along with any information | ||
you feel relevant to replicate the bug. | ||
validations: | ||
required: true | ||
- type: input | ||
id: lint-name | ||
attributes: | ||
label: Lint Name | ||
description: Please provide the lint name. | ||
- type: textarea | ||
id: reproducer | ||
attributes: | ||
label: Reproducer | ||
description: Please provide the code and steps to repoduce the bug | ||
value: | | ||
I tried this code: | ||
```rust | ||
<code> | ||
``` | ||
I expected to see this happen: | ||
Instead, this happened: | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Version | ||
description: "Rust version (`rustc -Vv`)" | ||
placeholder: | | ||
rustc 1.46.0-nightly (f455e46ea 2020-06-20) | ||
binary: rustc | ||
commit-hash: f455e46eae1a227d735091091144601b467e1565 | ||
commit-date: 2020-06-20 | ||
host: x86_64-unknown-linux-gnu | ||
release: 1.46.0-nightly | ||
LLVM version: 10.0 | ||
render: text |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.