This rule is deprecated, and will eventually be removed.
Why is this an issue?
Trailing whitespaces are simply useless and should not stay in code. They may generate noise when comparing different versions of the same
file.
If you encounter issues from this rule, this probably means that you are not using an automated code formatter - which you should if you have the
opportunity to do so.
Noncompliant code example
// The following string will error if there is a whitespace after '\'
var str = "Hello \
World";