Skip to content

Commit

Permalink
Fixed dead clippy issue link
Browse files Browse the repository at this point in the history
  • Loading branch information
LesnyRumcajs authored and stepancheg committed Sep 6, 2019
1 parent 9877458 commit 02e0e35
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion protobuf-codegen/src/code_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl<'a> CodeWriter<'a> {
self.write_line("// @generated");

self.write_line("");
self.comment("https://github.com/Manishearth/rust-clippy/issues/702");
self.comment("https://github.com/rust-lang/rust-clippy/issues/702");
self.write_line("#![allow(unknown_lints)]");
self.write_line("#![allow(clippy::all)]");
self.write_line("");
Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/descriptor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/rustproto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/any.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/duration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/empty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/field_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/source_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/struct_pb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/timestamp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/type_pb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down
2 changes: 1 addition & 1 deletion protobuf/src/well_known_types/wrappers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// .proto file is parsed by protoc --rust-out=...
// @generated

// https://github.com/Manishearth/rust-clippy/issues/702
// https://github.com/rust-lang/rust-clippy/issues/702
#![allow(unknown_lints)]
#![allow(clippy::all)]

Expand Down

0 comments on commit 02e0e35

Please sign in to comment.