内容

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