df_safer_dart_lints 0.3.3
df_safer_dart_lints: ^0.3.3 copied to clipboard
Lints for the df_safer_dart package. Uses annotations from the df_safer_dart_annotation package.
import 'dart:async';
import 'package:df_safer_dart_annotations/df_safer_dart_annotations.dart';
// ignore_for_file: no_futures
@noFutures
void main() {
Future.value(1); // throws a warning!
}