no_leading_underscores_for_library_prefixes
Avoid leading underscores for library prefixes.
Details
#DON'T use a leading underscore for library prefixes. There is no concept of "private" for library prefixes. When one of those has a name that starts with an underscore, it sends a confusing signal to the reader. To avoid that, don't use leading underscores in those names.
BAD:
import 'dart:core' as _core;
GOOD:
import 'dart:core' as core;
Enable
#
To enable the no_leading_underscores_for_library_prefixes rule, add no_leading_underscores_for_library_prefixes
under
linter > rules in your analysis_options.yaml
file:
linter:
rules:
- no_leading_underscores_for_library_prefixes
If you're instead using the YAML map syntax to configure linter rules,
add no_leading_underscores_for_library_prefixes: true under linter > rules:
linter:
rules:
no_leading_underscores_for_library_prefixes: true
除非另有说明,文档之所提及适用于 Dart 3.9.2 版本报告页面问题。