use_string_in_part_of_directives

Group: style

Maturity: stable

Dart SDK: >= 2.19.0 • (Linter v1.27.0)

Since info is static, may be stale
has-fix

View all Lint Rules

Using the Linter

From Effective Dart:

DO use strings in part of directives.

BAD:

part of my_library;

GOOD:

part of '../../my_library.dart';

Usage

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

linter:
  rules:
    - use_string_in_part_of_directives