File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
exercises/practice/doubly-linked-list Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 22
22
" .meta/example.rs"
23
23
]
24
24
},
25
- "blurb" : " Write a more advanced doubly linked list implementation with cursors and iteration." ,
26
- "custom" : {
27
- "allowed-to-not-compile" : " Stub allowed to not compile because pre_implemented module cannot be resolved by rustfmt in exercism v3 track structure"
28
- }
25
+ "blurb" : " Write a more advanced doubly linked list implementation with cursors and iteration."
29
26
}
Original file line number Diff line number Diff line change @@ -11,3 +11,7 @@ edition = "2024"
11
11
[features ]
12
12
# check correct covariance and Send, Sync
13
13
advanced = []
14
+
15
+ [lints .clippy ]
16
+ drop_non_drop = " allow" # tests call drop before students have implemented it
17
+ new_without_default = " allow"
You can’t perform that action at this time.
0 commit comments