Mention `dart:async` `unawaited` (dart-lang/lints#53)
For people migrating from `pedantic`, point them to the new `unawaited` in `dart_async`.
diff --git a/pkgs/lints/README.md b/pkgs/lints/README.md
index 8cebaaa..2748bc6 100644
--- a/pkgs/lints/README.md
+++ b/pkgs/lints/README.md
@@ -73,6 +73,11 @@
[`package:flutter_lints`]). To keep any of these lints enabled,
add them to your [analysis options][customizing static analysis].
+Additionally, `package:pedantic` provides the `unawaited` method for use with
+`unawaited_futures`. With SDK version 2.14 this method is available in the
+`dart:async` package, and this is now the recommended way to use it. Be sure to
+mark the minimum SDK version of your package as `2.14` if you do so.
+
## Evolving the lint sets
The Dart language changes and the ecosystem continues to develop new best