Contents
Contents

Avoid escaping inner quotes by converting surrounding quotes.

This rule is available as of Dart 2.8.1.

This rule has a quick fix available.

Details

#

Avoid escaping inner quotes by converting surrounding quotes.

BAD:

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

GOOD:

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

Usage

#

To enable the avoid_escaping_inner_quotes rule, add avoid_escaping_inner_quotes under linter > rules in your analysis_options.yaml file:

analysis_options.yaml
yaml
linter:
  rules:
    - avoid_escaping_inner_quotes