We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0844bc6 commit eb69adcCopy full SHA for eb69adc
exercises/practice/doubly-linked-list/.meta/config.json
@@ -22,8 +22,5 @@
22
".meta/example.rs"
23
]
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
- }
+ "blurb": "Write a more advanced doubly linked list implementation with cursors and iteration."
29
}
exercises/practice/doubly-linked-list/Cargo.toml
@@ -11,3 +11,7 @@ edition = "2024"
11
[features]
12
# check correct covariance and Send, Sync
13
advanced = []
14
+
15
+[lints.clippy]
16
+drop_non_drop = "allow" # tests call drop before students have implemented it
17
+new_without_default = "allow"
0 commit comments