prefer_relative_imports
Prefer relative imports for files in lib/
.
This rule is available as of Dart 2.6.
This rule has a quick fix available.
Incompatible rules: always_use_package_imports
Details
#PREFER relative imports for files in lib/
.
When mixing relative and absolute imports it's possible to create confusion where the same member gets imported in two different ways. One way to avoid that is to ensure you consistently use relative imports for files within the lib/
directory.
BAD:
import 'package:my_package/bar.dart';
GOOD:
import 'bar.dart';
Usage
#To enable the prefer_relative_imports
rule, add prefer_relative_imports
under linter > rules in your analysis_options.yaml
file:
linter:
rules:
- prefer_relative_imports
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.