@@ -17,9 +17,6 @@ linter:
17
17
# We prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219
18
18
always_put_required_named_parameters_first : false
19
19
20
- # Depends on your needs
21
- always_require_non_null_named_parameters : false
22
-
23
20
# Conflicts with `omit_local_variable_types` and other rules.
24
21
# As per Dart guidelines, we want to avoid unnecessary types to make the code
25
22
# more readable.
@@ -48,9 +45,6 @@ linter:
48
45
# We prefer having typedef (discussion in https://github.com/flutter/flutter/pull/16356)
49
46
avoid_private_typedef_functions : false
50
47
51
- # Useful in a lot of cases
52
- avoid_returning_null : false
53
-
54
48
# Can be useful to have a more readable code
55
49
avoid_types_on_closure_parameters : false
56
50
@@ -72,9 +66,6 @@ linter:
72
66
73
67
# This project doesn't use Flutter-style todos
74
68
flutter_style_todos : false
75
-
76
- # Experimental: Too many false positives: https://github.com/dart-lang/linter/issues/811
77
- invariant_booleans : false
78
69
79
70
# Can be useful to have a more readable code
80
71
join_return_with_assignment : false
@@ -115,9 +106,6 @@ linter:
115
106
# return, but that return is still complex enough that a "body" is worth it.
116
107
prefer_expression_function_bodies : false
117
108
118
- # False positives
119
- top_level_function_literal_block : false
120
-
121
109
# We don't want to enforce this rule now.
122
110
sort_pub_dependencies : false
123
111
0 commit comments