Skip to content

Commit 8fea1d9

Browse files
committed
Merge commit 'a5d597637dcb78dc73f93561ce474f23d4177c35' into clippyup
1 parent 35a0060 commit 8fea1d9

File tree

491 files changed

+9876
-3243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

491 files changed

+9876
-3243
lines changed

.github/ISSUE_TEMPLATE/blank_issue.md

-18
This file was deleted.
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Blank Issue
2+
description: Create a blank issue.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: Thank you for filing an issue!
7+
- type: textarea
8+
id: problem
9+
attributes:
10+
label: Description
11+
description: >
12+
Please provide a discription of the issue, along with any information
13+
you feel relevant to replicate it.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: version
18+
attributes:
19+
label: Version
20+
description: "Rust version (`rustc -Vv`)"
21+
placeholder: |
22+
rustc 1.46.0-nightly (f455e46ea 2020-06-20)
23+
binary: rustc
24+
commit-hash: f455e46eae1a227d735091091144601b467e1565
25+
commit-date: 2020-06-20
26+
host: x86_64-unknown-linux-gnu
27+
release: 1.46.0-nightly
28+
LLVM version: 10.0
29+
render: text
30+
- type: textarea
31+
id: labels
32+
attributes:
33+
label: Additional Labels
34+
description: >
35+
Additional labels can be added to this issue by including the following
36+
command
37+
placeholder: |
38+
@rustbot label +<label>
39+
40+
Common labels for this issue type are:
41+
* C-an-interesting-project
42+
* C-enhancement
43+
* C-question
44+
* C-tracking-issue

.github/ISSUE_TEMPLATE/bug_report.md

-43
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Bug Report
2+
description: Create a bug report for Clippy
3+
labels: ["C-bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: Thank you for filing a bug report! 🐛
8+
- type: textarea
9+
id: problem
10+
attributes:
11+
label: Summary
12+
description: >
13+
Please provide a short summary of the bug, along with any information
14+
you feel relevant to replicate the bug.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: reproducer
19+
attributes:
20+
label: Reproducer
21+
description: Please provide the code and steps to repoduce the bug
22+
value: |
23+
I tried this code:
24+
25+
```rust
26+
<code>
27+
```
28+
29+
I expected to see this happen:
30+
31+
Instead, this happened:
32+
- type: textarea
33+
id: version
34+
attributes:
35+
label: Version
36+
description: "Rust version (`rustc -Vv`)"
37+
placeholder: |
38+
rustc 1.46.0-nightly (f455e46ea 2020-06-20)
39+
binary: rustc
40+
commit-hash: f455e46eae1a227d735091091144601b467e1565
41+
commit-date: 2020-06-20
42+
host: x86_64-unknown-linux-gnu
43+
release: 1.46.0-nightly
44+
LLVM version: 10.0
45+
render: text
46+
- type: textarea
47+
id: labels
48+
attributes:
49+
label: Additional Labels
50+
description: >
51+
Additional labels can be added to this issue by including the following
52+
command
53+
placeholder: |
54+
@rustbot label +<label>
55+
56+
Common labels for this issue type are:
57+
* `I-suggestion-causes-error`

.github/ISSUE_TEMPLATE/false_negative.md

-35
This file was deleted.
+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Bug Report (False Negative)
2+
description: Create a bug report about missing warnings from a lint
3+
labels: ["C-bug", "I-false-negative"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: Thank you for filing a bug report! 🐛
8+
- type: textarea
9+
id: problem
10+
attributes:
11+
label: Summary
12+
description: >
13+
Please provide a short summary of the bug, along with any information
14+
you feel relevant to replicate the bug.
15+
validations:
16+
required: true
17+
- type: input
18+
id: lint-name
19+
attributes:
20+
label: Lint Name
21+
description: Please provide the lint name.
22+
- type: textarea
23+
id: reproducer
24+
attributes:
25+
label: Reproducer
26+
description: Please provide the code and steps to repoduce the bug
27+
value: |
28+
I tried this code:
29+
30+
```rust
31+
<code>
32+
```
33+
34+
I expected to see this happen:
35+
36+
Instead, this happened:
37+
- type: textarea
38+
id: version
39+
attributes:
40+
label: Version
41+
description: "Rust version (`rustc -Vv`)"
42+
placeholder: |
43+
rustc 1.46.0-nightly (f455e46ea 2020-06-20)
44+
binary: rustc
45+
commit-hash: f455e46eae1a227d735091091144601b467e1565
46+
commit-date: 2020-06-20
47+
host: x86_64-unknown-linux-gnu
48+
release: 1.46.0-nightly
49+
LLVM version: 10.0
50+
render: text

.github/ISSUE_TEMPLATE/false_positive.md

-44
This file was deleted.
+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Bug Report (False Positive)
2+
description: Create a bug report about a wrongly emitted lint warning
3+
labels: ["C-bug", "I-false-positive"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: Thank you for filing a bug report! 🐛
8+
- type: textarea
9+
id: problem
10+
attributes:
11+
label: Summary
12+
description: >
13+
Please provide a short summary of the bug, along with any information
14+
you feel relevant to replicate the bug.
15+
validations:
16+
required: true
17+
- type: input
18+
id: lint-name
19+
attributes:
20+
label: Lint Name
21+
description: Please provide the lint name.
22+
- type: textarea
23+
id: reproducer
24+
attributes:
25+
label: Reproducer
26+
description: >
27+
Please provide the code and steps to repoduce the bug together with the
28+
output from Clippy.
29+
value: |
30+
I tried this code:
31+
32+
```rust
33+
<code>
34+
```
35+
36+
I saw this happen:
37+
38+
```
39+
<output>
40+
```
41+
42+
I expected to see this happen:
43+
- type: textarea
44+
id: version
45+
attributes:
46+
label: Version
47+
description: "Rust version (`rustc -Vv`)"
48+
placeholder: |
49+
rustc 1.46.0-nightly (f455e46ea 2020-06-20)
50+
binary: rustc
51+
commit-hash: f455e46eae1a227d735091091144601b467e1565
52+
commit-date: 2020-06-20
53+
host: x86_64-unknown-linux-gnu
54+
release: 1.46.0-nightly
55+
LLVM version: 10.0
56+
render: text
57+
- type: textarea
58+
id: labels
59+
attributes:
60+
label: Additional Labels
61+
description: >
62+
Additional labels can be added to this issue by including the following
63+
command
64+
placeholder: |
65+
@rustbot label +<label>
66+
67+
Common labels for this issue type are:
68+
* `I-suggestion-causes-error`

0 commit comments

Comments
 (0)