You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`avoid_empty_else`](https://dart.dev/lints/avoid_empty_else)| Avoid empty statements in else clauses. | ✅ |
9
9
|[`avoid_relative_lib_imports`](https://dart.dev/lints/avoid_relative_lib_imports)| Avoid relative imports for files in `lib/`. | ✅ |
10
10
|[`avoid_shadowing_type_parameters`](https://dart.dev/lints/avoid_shadowing_type_parameters)| Avoid shadowing type parameters. ||
11
11
|[`avoid_types_as_parameter_names`](https://dart.dev/lints/avoid_types_as_parameter_names)| Avoid types as parameter names. | ✅ |
@@ -20,11 +20,11 @@
20
20
|[`file_names`](https://dart.dev/lints/file_names)| Name source files using `lowercase_with_underscores`. ||
21
21
|[`hash_and_equals`](https://dart.dev/lints/hash_and_equals)| Always override `hashCode` if overriding `==`. | ✅ |
22
22
|[`implicit_call_tearoffs`](https://dart.dev/lints/implicit_call_tearoffs)| Explicitly tear-off `call` methods when using an object as a Function. | ✅ |
23
+
|[`library_annotations`](https://dart.dev/lints/library_annotations)| Attach library annotations to library directives. | ✅ |
23
24
|[`no_duplicate_case_values`](https://dart.dev/lints/no_duplicate_case_values)| Don't use more than one case with same value. | ✅ |
24
25
|[`no_wildcard_variable_uses`](https://dart.dev/lints/no_wildcard_variable_uses)| Don't use wildcard parameters or variables. ||
25
26
|[`non_constant_identifier_names`](https://dart.dev/lints/non_constant_identifier_names)| Name non-constant identifiers using lowerCamelCase. | ✅ |
26
27
|[`null_check_on_nullable_type_parameter`](https://dart.dev/lints/null_check_on_nullable_type_parameter)| Don't use null check on a potentially nullable type parameter. | ✅ |
27
-
|[`package_prefixed_library_names`](https://dart.dev/lints/package_prefixed_library_names)| Prefix library names with the package name and a dot-separated path. ||
28
28
|[`prefer_generic_function_type_aliases`](https://dart.dev/lints/prefer_generic_function_type_aliases)| Prefer generic function type aliases. | ✅ |
29
29
|[`prefer_is_empty`](https://dart.dev/lints/prefer_is_empty)| Use `isEmpty` for Iterables and Maps. | ✅ |
30
30
|[`prefer_is_not_empty`](https://dart.dev/lints/prefer_is_not_empty)| Use `isNotEmpty` for Iterables and Maps. | ✅ |
0 commit comments