linter-ui-default
linter-ui-default copied to clipboard
Make wavy underline configurable (or remove it)
Atom Version: 1.16.0 linter-ui-default version: 1.2.4 macOS 10.12.4
I find the wavy underlines difficult to see on dark UIs, and would like to have the option to use a solid underline. Thanks!
I was in favor of removing them entirely but @Arcanemagus likes them so going to make them optional
Thanks, steelbrain!
... a solid underline
Note that the older style was a dotted underline, are you requesting a third option of a solid one?
I was against removing them entirely
You mean for? 😛
The dotted worked, mostly, but a solid underline would be better. Thanks for asking. Us folks with older eyes thank you.
How does one disable the wavy underline entirely and keep only the gutter marks? I thought the following would do but it doesn't?!
atom-text-editor.editor .linter-highlight, .linter-highlight {
&.linter-info {
}
&.linter-warning {
}
&.linter-error {
}
}
Thanks.
To disable the wavy underlines altogether, add the below to your Atom stylesheet:
atom-text-editor.editor .linter-highlight, .linter-highlight {
&.linter-info, &.linter-warning, &.linter-error {
background-image: none;
}
}