prefer_relative_imports

Group: errors

Maturity: stable

Dart SDK: >= 2.6.0 • (Linter v0.1.99)

Since info is static, may be stale
has-fix

View all Lint Rules

Using the Linter

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';

Incompatible with: always_use_package_imports.