debang_lints 1.1.0
debang_lints: ^1.1.0 copied to clipboard
A Dart analyzer plugin for the debang package that enforces descriptive assertion messages and requires author attribution in debang() calls.
import 'package:debang/debang.dart';
void main() {
int? value;
value.debang('Short message');
value.debang('Long message without author');
value.debang('(John Doe): Short message');
value.debang(
'(John Doe): Long message with author which will be without error');
}