avoid_escaping_inner_quotes
Avoid escaping inner quotes by converting surrounding quotes.
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";
Enable
#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
If you're instead using the YAML map syntax to configure linter rules, add avoid_escaping_inner_quotes: true
under linter > rules:
analysis_options.yaml
yaml
linter:
rules:
avoid_escaping_inner_quotes: true
Unless stated otherwise, the documentation on this site reflects Dart 3.6.0. Page last updated on 2025-01-27. View source or report an issue.