Skip to content

Commit c0ce4f3

Browse files
authored
fix(clippy): fix module_inception and allow lint (#557)
- Fix cortex-storage/sessions/tests.rs module inception issue - Add module_inception = allow to workspace lints
1 parent cace37e commit c0ce4f3

2 files changed

Lines changed: 302 additions & 305 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,8 @@ print_stderr = "allow"
393393
unnecessary_sort_by = "allow"
394394
# Allow iter() without IntoIterator implementation
395395
iter_without_into_iter = "allow"
396+
# Allow modules with the same name as parent (test modules pattern)
397+
module_inception = "allow"
396398

397399
[profile.release]
398400
lto = "fat"

0 commit comments

Comments
 (0)