Skip to content

Commit eb69adc

Browse files
authored
doubly-linked-list: check compilation in ci (#2044)
The reason given for why this exercise was allowed to not compile doesn't seem to apply anymore.
1 parent 0844bc6 commit eb69adc

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

exercises/practice/doubly-linked-list/.meta/config.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,5 @@
2222
".meta/example.rs"
2323
]
2424
},
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."
2926
}

exercises/practice/doubly-linked-list/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ edition = "2024"
1111
[features]
1212
# check correct covariance and Send, Sync
1313
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

Comments
 (0)