From ae74459fcca1bacd941a35571421630b1665a602 Mon Sep 17 00:00:00 2001 From: Roman Laptev Date: Fri, 25 Aug 2023 21:56:29 +0300 Subject: [PATCH] 1.5.1 --- CHANGELOG.md | 8 +++++++- README.md | 4 ++-- example/pubspec.yaml | 2 +- lib/core.yaml | 3 +++ pubspec.yaml | 2 +- 5 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64de957..d3ba791 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.5.1 + +* Add lints: + * [`flutter_style_todos`](https://dart.dev/tools/linter-rules/flutter_style_todos) + * [`matching_super_parameters`](https://dart.dev/tools/linter-rules/matching_super_parameters) + * [`no_literal_bool_comparisons`](https://dart.dev/tools/linter-rules/no_literal_bool_comparisons) + ## 1.5.0 * Update minimum Dart SDK version to 3.1 @@ -23,7 +30,6 @@ * [`invalid_case_patterns`](https://dart.dev/tools/linter-rules/invalid_case_patterns) * [`type_literal_in_constant_pattern`](https://dart.dev/tools/linter-rules/type_literal_in_constant_pattern) * [`unnecessary_breaks`](https://dart.dev/tools/linter-rules/unnecessary_breaks) - * [`flutter_style_todos`](https://dart.dev/tools/linter-rules/flutter_style_todos) * Remove lints: * [`avoid_returning_null_for_future`](https://dart.dev/tools/linter-rules/avoid_returning_null_for_future) * [`always_require_non_null_named_parameters`](https://dart.dev/tools/linter-rules/always_require_non_null_named_parameters) diff --git a/README.md b/README.md index 4fb10f8..8c5744c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This package contains a recommended set of lints for Flutter apps, packages, and Add `carapacik_lints` as dev dependency to your `pubspec.yaml`. ```yaml dev_dependencies: - carapacik_lints: ^1.5.0 + carapacik_lints: ^1.5.1 ``` or ```yaml @@ -31,4 +31,4 @@ include: package:carapacik_lints/core.yaml | 3.3.x | 2.18.x | 1.2.3 | | 3.7.x | 2.19.x | 1.3.2 | | 3.10.x | 3.0.x | 1.4.2 | -| 3.13.x | 3.1.x | 1.5.0 | +| 3.13.x | 3.1.x | 1.5.1 | diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 1691c1c..e8625c6 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -5,4 +5,4 @@ environment: sdk: ^3.1.0 dev_dependencies: - carapacik_lints: ^1.5.0 + carapacik_lints: ^1.5.1 diff --git a/lib/core.yaml b/lib/core.yaml index 84c8551..db913e6 100644 --- a/lib/core.yaml +++ b/lib/core.yaml @@ -107,6 +107,7 @@ linter: - eol_at_end_of_file - exhaustive_cases - file_names + - flutter_style_todos - implementation_imports - implicit_call_tearoffs - join_return_with_assignment @@ -114,10 +115,12 @@ linter: - library_annotations - library_names - library_prefixes + - matching_super_parameters - missing_whitespace_between_adjacent_strings - no_default_cases - no_leading_underscores_for_library_prefixes - no_leading_underscores_for_local_identifiers + - no_literal_bool_comparisons - no_runtimeType_toString - non_constant_identifier_names - noop_primitive_operations diff --git a/pubspec.yaml b/pubspec.yaml index 11bb634..3157751 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: carapacik_lints description: The most necessary lints for Flutter to encourage good coding practices -version: 1.5.0 +version: 1.5.1 repository: https://github.com/Carapacik/carapacik_lints topics: - analysis