chore: use clippy by default for check command, fix lint

This commit is contained in:
2025-09-13 11:31:09 -05:00
parent 27ac9a7302
commit 26b1a88860
2 changed files with 4 additions and 1 deletions

3
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"rust-analyzer.check.command": "clippy"
}

View File

@@ -62,7 +62,7 @@ impl Holiday {
} }
/// University holidays that should be excluded from class schedules /// University holidays that should be excluded from class schedules
const UNIVERSITY_HOLIDAYS: &[(&'static str, Holiday)] = &[ const UNIVERSITY_HOLIDAYS: &[(&str, Holiday)] = &[
("Labor Day", Holiday::Single { month: 9, day: 1 }), ("Labor Day", Holiday::Single { month: 9, day: 1 }),
( (
"Fall Break", "Fall Break",