You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried adding an empty .editorconfig file in order to slowly add rules to an existing project.
When testing it with --severity error --verify-no-changes I get WHITESPACE errors for lines with trailing whitespace.
When I try setting trim_trailing_whitespace to false or unset I still get those errors.
I've tried disabling all sorts of dotnet_diagnostic codes like:
dotnet-format uses the Roslyn formatter to format whitespace and the Roslyn formatter always trims unnecessary whitespace from the ends of lines. There is no setting to control this behavior.
I've tried adding an empty .editorconfig file in order to slowly add rules to an existing project.
When testing it with
--severity error --verify-no-changes
I get WHITESPACE errors for lines with trailing whitespace.When I try setting
trim_trailing_whitespace
tofalse
orunset
I still get those errors.I've tried disabling all sorts of dotnet_diagnostic codes like:
But nothing seems to work.
How can I disable this rule?
The text was updated successfully, but these errors were encountered: