Reports unnecessarily escaped characters in String literals, and optionally char literals.

Escaped tab characters (\t) are not reported, even though escaping them is not required, because tab characters are hard to tell apart from spaces.

示例:


  String s = "\'Scare\' quotes";
  String t = """
    All you need is\n\tLove\n""";

在应用快速修复后:


  String s = "'Scare' quotes";
  String t = """
    All you need is
    \tLove
    """;