内容

unnecessary_string_escapes

移除字符串中不必要的反斜杠。

此规则从 Dart 2.8 开始可用。

规则集: 推荐flutter

此规则提供了一个 快速修复

详情

#

移除字符串中不必要的反斜杠。

错误

dart
'this string contains 2 \"double quotes\" ';
"this string contains 2 \'single quotes\' ";

正确

dart
'this string contains 2 "double quotes" ';
"this string contains 2 'single quotes' ";

用法

#

要启用 unnecessary_string_escapes 规则,请在 analysis_options.yaml 文件中linter > rules下添加 unnecessary_string_escapes

analysis_options.yaml
yaml
linter:
  rules:
    - unnecessary_string_escapes