avoid_escaping_inner_quotes
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:
var s = 'It\'s not fun';
GOOD:
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:
linter:
rules:
- avoid_escaping_inner_quotes