Skip to content

Commit f515d7b

Browse files
llogiqmcarton
authored andcommitted
Change all links to reflect the move to rust-lang-nursery
1 parent 878333f commit f515d7b

16 files changed

+443
-443
lines changed

CHANGELOG.md

+210-210
Large diffs are not rendered by default.

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ Hello fellow Rustacean! Great to see your interest in compiler internals and lin
66

77
All issues on Clippy are mentored, if you want help with a bug just ask @Manishearth or @llogiq.
88

9-
Some issues are easier than others. The [E-easy](https://github.com/Manishearth/rust-clippy/labels/E-easy)
9+
Some issues are easier than others. The [E-easy](https://github.com/rust-lang-nursery/rust-clippy/labels/E-easy)
1010
label can be used to find the easy issues. If you want to work on an issue, please leave a comment
1111
so that we can assign it to you!
1212

13-
Issues marked [T-AST](https://github.com/Manishearth/rust-clippy/labels/T-AST) involve simple
13+
Issues marked [T-AST](https://github.com/rust-lang-nursery/rust-clippy/labels/T-AST) involve simple
1414
matching of the syntax tree structure, and are generally easier than
15-
[T-middle](https://github.com/Manishearth/rust-clippy/labels/T-middle) issues, which involve types
15+
[T-middle](https://github.com/rust-lang-nursery/rust-clippy/labels/T-middle) issues, which involve types
1616
and resolved paths.
1717

18-
Issues marked [E-medium](https://github.com/Manishearth/rust-clippy/labels/E-medium) are generally
18+
Issues marked [E-medium](https://github.com/rust-lang-nursery/rust-clippy/labels/E-medium) are generally
1919
pretty easy too, though it's recommended you work on an E-easy issue first.
2020

2121
[Llogiq's blog post on lints](https://llogiq.github.io/2015/06/04/workflows.html) is a nice primer
@@ -28,7 +28,7 @@ how this syntax structure is encoded in the AST, it is recommended to run `rustc
2828
example of the structure and compare with the
2929
[nodes in the AST docs](http://manishearth.github.io/rust-internals-docs/syntax/ast/). Usually
3030
the lint will end up to be a nested series of matches and ifs,
31-
[like so](https://github.com/Manishearth/rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34).
31+
[like so](https://github.com/rust-lang-nursery/rust-clippy/blob/de5ccdfab68a5e37689f3c950ed1532ba9d652a0/src/misc.rs#L34).
3232

3333
T-middle issues can be more involved and require verifying types. The
3434
[`ty`](http://manishearth.github.io/rust-internals-docs/rustc/ty) module contains a

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ authors = [
99
"Oliver Schneider <[email protected]>"
1010
]
1111
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
12-
repository = "https://github.com/Manishearth/rust-clippy"
12+
repository = "https://github.com/rust-lang-nursery/rust-clippy"
1313
readme = "README.md"
1414
license = "MPL-2.0"
1515
keywords = ["clippy", "lint", "plugin"]
1616
categories = ["development-tools", "development-tools::cargo-plugins"]
1717

1818
[badges]
19-
travis-ci = { repository = "Manishearth/rust-clippy" }
20-
appveyor = { repository = "Manishearth/rust-clippy" }
19+
travis-ci = { repository = "rust-lang-nursery/rust-clippy" }
20+
appveyor = { repository = "rust-lang-nursery/rust-clippy" }
2121

2222
[lib]
2323
name = "clippy"

PUBLISH.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Steps to publish a new clippy version
1212
- `git pull`.
1313
- `git tag -s v0.0.X -m "v0.0.X"`.
1414
- `git push --tags`.
15-
- `git clone [email protected]:Manishearth/rust-clippy.wiki.git ../rust-clippy.wiki`
15+
- `git clone [email protected]:rust-lang-nursery/rust-clippy.wiki.git ../rust-clippy.wiki`
1616
- `./util/update_wiki.py`
1717
- `cd ../rust-clippy.wiki`
1818
- `git add *`

README.md

+212-212
Large diffs are not rendered by default.

clippy_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
"Martin Carton <[email protected]>"
1111
]
1212
description = "A bunch of helpful lints to avoid common pitfalls in Rust"
13-
repository = "https://github.com/Manishearth/rust-clippy"
13+
repository = "https://github.com/rust-lang-nursery/rust-clippy"
1414
readme = "README.md"
1515
license = "MPL-2.0"
1616
keywords = ["clippy", "lint", "plugin"]

clippy_lints/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
This crate contains Clippy lints. For the main crate, check
22
[*cargo.io*](https://crates.io/crates/clippy) or
3-
[GitHub](https://github.com/Manishearth/rust-clippy).
3+
[GitHub](https://github.com/rust-lang-nursery/rust-clippy).

clippy_lints/src/copies.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ declare_lint! {
6767
/// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns).
6868
///
6969
/// **Known problems:** False positive possible with order dependent `match`
70-
/// (see issue [#860](https://github.com/Manishearth/rust-clippy/issues/860)).
70+
/// (see issue [#860](https://github.com/rust-lang-nursery/rust-clippy/issues/860)).
7171
///
7272
/// **Example:**
7373
/// ```rust,ignore

clippy_lints/src/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AbsurdExtremeComparisons {
10721072
/// will mistakenly imply that it is possible for `x` to be outside the range of
10731073
/// `u8`.
10741074
///
1075-
/// **Known problems:** https://github.com/Manishearth/rust-clippy/issues/886
1075+
/// **Known problems:** https://github.com/rust-lang-nursery/rust-clippy/issues/886
10761076
///
10771077
/// **Example:**
10781078
/// ```rust

clippy_lints/src/utils/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ impl<'a> Drop for DiagnosticWrapper<'a> {
498498
impl<'a> DiagnosticWrapper<'a> {
499499
fn wiki_link(&mut self, lint: &'static Lint) {
500500
if env::var("CLIPPY_DISABLE_WIKI_LINKS").is_err() {
501-
self.0.help(&format!("for further information visit https://github.com/Manishearth/rust-clippy/wiki#{}",
501+
self.0.help(&format!("for further information visit https://github.com/rust-lang-nursery/rust-clippy/wiki#{}",
502502
lint.name_lower()));
503503
}
504504
}

mini-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
license = "MPL-2.0"
1212
description = "A macro to test clippy's procedural macro checks"
13-
repository = "https://github.com/Manishearth/rust-clippy"
13+
repository = "https://github.com/rust-lang-nursery/rust-clippy"
1414

1515
[lib]
1616
name = "clippy_mini_macro_test"

tests/ui/doc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fn test_units() {
5050
}
5151

5252
/// This test has [a link_with_underscores][chunked-example] inside it. See #823.
53-
/// See also [the issue tracker](https://github.com/Manishearth/rust-clippy/search?q=doc_markdown&type=Issues)
53+
/// See also [the issue tracker](https://github.com/rust-lang-nursery/rust-clippy/search?q=doc_markdown&type=Issues)
5454
/// on GitHub (which is a camel-cased word, but is OK). And here is another [inline link][inline_link].
5555
/// It can also be [inline_link2].
5656
///
@@ -142,7 +142,7 @@ fn four_quotes() {
142142
/// See [NIST SP 800-56A, revision 2].
143143
///
144144
/// [NIST SP 800-56A, revision 2]:
145-
/// https://github.com/Manishearth/rust-clippy/issues/902#issuecomment-261919419
145+
/// https://github.com/rust-lang-nursery/rust-clippy/issues/902#issuecomment-261919419
146146
fn issue_902_comment() {}
147147

148148
#[cfg_attr(feature = "a", doc = " ```")]

tests/ui/methods.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ fn single_char_pattern() {
483483
// should have done this but produced an ICE
484484
//
485485
// We may not want to suggest changing these anyway
486-
// See: https://github.com/Manishearth/rust-clippy/issues/650#issuecomment-184328984
486+
// See: https://github.com/rust-lang-nursery/rust-clippy/issues/650#issuecomment-184328984
487487
x.split("ß");
488488
x.split("ℝ");
489489
x.split("💣");

tests/ui/module_inception.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mod foo {
1414
}
1515
}
1616

17-
// No warning. See <https://github.com/Manishearth/rust-clippy/issues/1220>.
17+
// No warning. See <https://github.com/rust-lang-nursery/rust-clippy/issues/1220>.
1818
mod bar {
1919
#[allow(module_inception)]
2020
mod bar {

util/gh-pages/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ <h4 class="list-group-item-heading">
9494
</div>
9595
</div>
9696

97-
<a href="https://github.com/Manishearth/rust-clippy">
97+
<a href="https://github.com/rust-lang-nursery/rust-clippy">
9898
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"/>
9999
</a>
100100

util/update_lints.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
nl_escape_re = re.compile(r'\\\n\s*')
3131

32-
wiki_link = 'https://github.com/Manishearth/rust-clippy/wiki'
32+
wiki_link = 'https://github.com/rust-lang-nursery/rust-clippy/wiki'
3333

3434

3535
def collect(lints, deprecated_lints, restriction_lints, fn):

0 commit comments

Comments
 (0)