unnecessary_raw_strings
Unnecessary raw string.
This rule is available as of Dart 2.8.
This rule has a quick fix available.
Details
#Use raw string only when needed.
BAD:
dart
var s1 = r'a';
GOOD:
dart
var s1 = 'a';
var s2 = r'$a';
var s3 = r'\a';
Usage
#To enable the unnecessary_raw_strings
rule, add unnecessary_raw_strings
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- unnecessary_raw_strings
Unless stated otherwise, the documentation on this site reflects Dart 3.5.4. Page last updated on 2024-07-03. View source or report an issue.