We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2e3eb7 commit b2ccee1Copy full SHA for b2ccee1
src/rules/rule11b.rs
@@ -68,10 +68,7 @@ impl Rule for Rule11b {
68
.with_code("XI:B")
69
.with_message("Line contains DOS-style ending")
70
.with_label(Label::primary((), cr_pos..(cr_pos + 1)))
71
- // TODO: Don't hard-code escape sequences
72
- .with_note(
73
- "See \x1b[4m:h 'fileformat'\x1b[m in Vim for info on how to fix this",
74
- ),
+ .with_note("Use the `fileformat' option in Vim to fix this"),
75
);
76
77
// Apply the limit on the number of diagnostics produced
0 commit comments