Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating issue templates again for rustbot #7627

Merged
merged 2 commits into from
Sep 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/blank_issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ about: Create a blank issue.


<!--
Additional labels can be added to this issue by including the following command:
Additional labels can be added to this issue by including the following command
(without the space after the @ symbol):

@rustbot label +<label>
`@rustbot label +<label>`

Common labels for this issue type are:
* C-an-interesting-project
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ LLVM version: 10.0
```

<!--
Additional labels can be added to this issue by including the following command:
Additional labels can be added to this issue by including the following command
(without the space after the @ symbol):

@rustbot label +<label>
`@rustbot label +<label>`

Common labels for this issue type are:
* `I-suggestion-causes-error`
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/false_positive.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ LLVM version: 10.0
```

<!--
Additional labels can be added to this issue by including the following command:
Additional labels can be added to this issue by including the following command
(without the space after the @ symbol):

@rustbot label +<label>
`@rustbot label +<label>`

Common labels for this issue type are:
* I-suggestion-causes-error
Expand Down
2 changes: 1 addition & 1 deletion doc/adding_lints.md
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ directory. Adding a configuration to a lint can be useful for thresholds or to c
behavior that can be seen as a false positive for some users. Adding a configuration is done
in the following steps:

1. Adding a new configuration entry to [clippy_utils::conf](/clippy_utils/src/conf.rs)
1. Adding a new configuration entry to [clippy_lints::utils::conf](/clippy_lints/src/utils/conf.rs)
like this:
```rust
/// Lint: LINT_NAME.
Expand Down