You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guidelines.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ let mutex = Mutex::new(1u32);
34
34
*mutex.lock() +=2;
35
35
```
36
36
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.
38
38
39
39
### 003 - Opt-in for Clippy and Rust 2018 style warnings for every crate
40
40
@@ -47,7 +47,7 @@ Add this to the top of the main file (`lib.rs` or `bin.rs`) for all of our crate
47
47
#![warn(rust_2018_idioms)]
48
48
```
49
49
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).
0 commit comments