library_annotations
Attach library annotations to library directives.
This rule is available as of Dart 2.19.
Rule sets: core, recommended, flutter
This rule has a quick fix available.
Details
#Attach library annotations to library directives, rather than some other library-level element.
BAD:
dart
@TestOn('browser')
import 'package:test/test.dart';
void main() {}
GOOD:
dart
@TestOn('browser')
library;
import 'package:test/test.dart';
void main() {}
NOTE: An unnamed library, like library;
above, is only supported in Dart
2.19 and later. Code which might run in earlier versions of Dart will need to
provide a name in the library
directive.
Usage
#To enable the library_annotations
rule,
add library_annotations
under linter > rules in your
analysis_options.yaml
file:
analysis_options.yaml
yaml
linter:
rules:
- library_annotations
除非另有说明,文档之所提及适用于 Dart 3.5.4 版本,本页面最后更新时间: 2024-08-02。 查看文档源码 或者 报告页面问题。