内容

avoid_escaping_inner_quotes

通过转换周围的引号来避免转义内部引号。

此规则从 Dart 2.8 开始可用。

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

详情

#

通过转换周围的引号来避免转义内部引号。

错误示例

dart
var s = 'It\'s not fun';

正确示例

dart
var s = "It's not fun";

用法

#

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

analysis_options.yaml
yaml
linter:
  rules:
    - avoid_escaping_inner_quotes