Skip to content

Commit

Permalink
1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Carapacik committed Aug 25, 2023
1 parent c14d07c commit ae74459
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 |
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ environment:
sdk: ^3.1.0

dev_dependencies:
carapacik_lints: ^1.5.0
carapacik_lints: ^1.5.1
3 changes: 3 additions & 0 deletions lib/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,20 @@ linter:
- eol_at_end_of_file
- exhaustive_cases
- file_names
- flutter_style_todos
- implementation_imports
- implicit_call_tearoffs
- join_return_with_assignment
- leading_newlines_in_multiline_strings
- 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
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit ae74459

Please # to comment.