use_string_in_part_of_directives
Use string in part of directives.
This rule is available as of Dart 2.19.
Rule sets: core, recommended, flutter
This rule has a quick fix available.
Details
#From Effective Dart:
DO use strings in part of
directives.
BAD:
dart
part of my_library;
GOOD:
dart
part of '../../my_library.dart';
Usage
#To enable the use_string_in_part_of_directives
rule, add use_string_in_part_of_directives
under linter > rules in your analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- use_string_in_part_of_directives
Unless stated otherwise, the documentation on this site reflects Dart 3.5.3. Page last updated on 2024-07-03. View source or report an issue.