use_raw_strings

Group: style

Maturity: stable

Dart SDK: >= 2.8.1 • (Linter v0.1.111)

Since info is static, may be stale
has-fix

View all Lint Rules

Using the Linter

A raw string can be used to avoid escaping only backslashes and dollars.

BAD:

var s = 'A string with only \\ and \$';

GOOD:

var s = r'A string with only \ and $';

Usage

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

linter:
  rules:
    - use_raw_strings