Skip to content

Commit ce2e4f7

Browse files
committed
Link issue for global lints #22
1 parent 0b2f1ab commit ce2e4f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let mutex = Mutex::new(1u32);
3434
*mutex.lock() += 2;
3535
```
3636

37-
TODO: Would be great to automatically verify this through something like a custom clippy lint, or even better: have the `parking_lot` primitives eventually find their way into std.
37+
__Todo:__ Would be great to automatically verify this through something like a custom clippy lint, or even better: have the `parking_lot` primitives eventually find their way into std.
3838

3939
### 003 - Opt-in for Clippy and Rust 2018 style warnings for every crate
4040

@@ -47,7 +47,7 @@ Add this to the top of the main file (`lib.rs` or `bin.rs`) for all of our crate
4747
#![warn(rust_2018_idioms)]
4848
```
4949

50-
TODO: It would be nice if we could configure this globally for our workspace instead of for each crate which is more error prone.
50+
__Todo:__ Would be great if we could configure this globally for our workspace instead of for each crate (more error prone). [#22](https://github.com/EmbarkStudios/rust-ecosystem/issues/22).
5151

5252
## Development environments
5353

0 commit comments

Comments
 (0)