diff --git a/flint/CHANGELOG.md b/flint/CHANGELOG.md index da6c5b60..2856f40c 100644 --- a/flint/CHANGELOG.md +++ b/flint/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.5.2 (05/09/2022) +This update removes `prefer_int_literals`, see https://github.com/dart-lang/linter/issues/3657. + +- Remove `prefer_int_literals` + ## 2.5.1 (05/09/2022) This update adds `depend_on_referenced_packages` which was accidentally omitted from the previous release. diff --git a/flint/lib/analysis_options.dart.yaml b/flint/lib/analysis_options.dart.yaml index 6005e709..a0ee2f8d 100644 --- a/flint/lib/analysis_options.dart.yaml +++ b/flint/lib/analysis_options.dart.yaml @@ -112,7 +112,6 @@ linter: - prefer_if_null_operators - prefer_initializing_formals - prefer_inlined_adds - - prefer_int_literals - prefer_interpolation_to_compose_strings - prefer_is_empty - prefer_is_not_empty @@ -195,6 +194,7 @@ ignore: - parameter_assignments - prefer_double_quotes - prefer_final_parameters + - prefer_int_literals - prefer_mixin - prefer_relative_imports - public_member_api_docs diff --git a/flint/pubspec.yaml b/flint/pubspec.yaml index 3eb420ca..7f610880 100644 --- a/flint/pubspec.yaml +++ b/flint/pubspec.yaml @@ -1,6 +1,6 @@ name: flint description: Forus Labs' sets of dartanalyzer lints that we use internally in our Dart & Flutter projects. -version: 2.5.1 +version: 2.5.2 homepage: https://github.com/forus-labs/cauldron repository: https://github.com/forus-labs/cauldron