Update README.md (dart-lang/lints#108)
diff --git a/pkgs/lints/README.md b/pkgs/lints/README.md
index 2d9751a..83bc12f 100644
--- a/pkgs/lints/README.md
+++ b/pkgs/lints/README.md
@@ -9,7 +9,7 @@
checking anything from potential typing issues, coding style, and formatting.
This package, `lints`, contains the lint settings recommended by the Dart team.
-Two sets of lints are available:
+Two sets of Dart lints are available:
* **Core lints**: Lints that help identify critical issues that are likely to
lead to problems when running or consuming Dart code. All code should pass these
@@ -20,6 +20,9 @@
writing Dart using a single, idiomatic style and format. All code is encouraged
to pass these lints. The recommended lints include all the core lints.
+Finally, a third set [`flutter_lints`](https://pub.dev/packages/flutter_lints)
+extends the recommended set with additional recommencded Flutter-specific lints.
+
## Where these lints are used
When creating new Dart project using the [`dart create`][dart create] command,