From 4011a363e5d22e07dff6e7b5084fd470b2072201 Mon Sep 17 00:00:00 2001 From: Michael Thomsen Date: Thu, 23 Mar 2023 14:20:10 +0100 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d9751a..83bc12f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Dart source code. More than a hundred [linter rules][rules] are available, 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 @@ lead to problems when running or consuming Dart code, and lints that enforce 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,