always_put_doc_comments_before_annotations
| Severity | Quick Fix | Options |
|---|---|---|
| Info | ✅ | ❌ |
Details
DO place doc comments before metadata annotations.
see: effective-dart
Bad
@immutable
/// Some documentation.
class A {}
Good
/// Some documentation.
@immutable
class A {}
