Merge branch 'master' into 0.1.74
diff --git a/example/all.yaml b/example/all.yaml
index bed8d4f..59f26c3 100644
--- a/example/all.yaml
+++ b/example/all.yaml
@@ -78,7 +78,6 @@
     - parameter_assignments
     - prefer_adjacent_string_concatenation
     - prefer_asserts_in_initializer_lists
-    - prefer_bool_in_asserts
     - prefer_collection_literals
     - prefer_conditional_assignment
     - prefer_const_constructors
diff --git a/test/integration_test.dart b/test/integration_test.dart
index e68683c..645d6f4 100644
--- a/test/integration_test.dart
+++ b/test/integration_test.dart
@@ -821,8 +821,9 @@
         registerLintRules();
         expect(
             configuredLints,
-            unorderedEquals(
-                Analyzer.facade.registeredRules.map((r) => r.name)));
+            unorderedEquals(Analyzer.facade.registeredRules
+                .where((r) => r.maturity != Maturity.deprecated)
+                .map((r) => r.name)));
       });
     });
   });