Swap "must" for "should" in identifier casing lint (#7604)

Draft: Swap "must" for "should" in identifier casing lint
This commit is contained in:
Pierre Jacquier
2025-06-25 12:48:02 -04:00
committed by GitHub
parent 0a1f35b89a
commit e1ab6bbc48
3 changed files with 8 additions and 8 deletions

View File

@ -2359,7 +2359,7 @@ async fn test_kcl_lsp_diagnostic_has_lints() {
assert_eq!(diagnostics.full_document_diagnostic_report.items.len(), 1);
assert_eq!(
diagnostics.full_document_diagnostic_report.items[0].message,
"Identifiers must be lowerCamelCase"
"Identifiers should be lowerCamelCase"
);
} else {
panic!("Expected full diagnostics");