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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Want to get involved? Join our Slack channel and help out! (http://flutter-parse
13
13
To install, either add to your pubspec.yaml
14
14
```
15
15
dependencies:
16
-
parse_server_sdk: ^1.0.15
16
+
parse_server_sdk: ^1.0.16
17
17
```
18
18
or clone this repository and add to your project. As this is an early development with multiple contributors, it is probably best to download/clone and keep updating as an when a new feature is added.
# - always_put_required_named_parameters_first # we prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219
50
+
- always_require_non_null_named_parameters
51
+
- always_specify_types
52
+
- annotate_overrides
53
+
# - avoid_annotating_with_dynamic # conflicts with always_specify_types
54
+
- avoid_as
55
+
# - avoid_bool_literals_in_conditional_expressions # not yet tested
56
+
# - avoid_catches_without_on_clauses # we do this commonly
57
+
# - avoid_catching_errors # we do this commonly
58
+
- avoid_classes_with_only_static_members
59
+
# - avoid_double_and_int_checks # only useful when targeting JS runtime
60
+
- avoid_empty_else
61
+
- avoid_field_initializers_in_const_classes
62
+
- avoid_function_literals_in_foreach_calls
63
+
# - avoid_implementing_value_types # not yet tested
64
+
- avoid_init_to_null
65
+
# - avoid_js_rounded_ints # only useful when targeting JS runtime
66
+
- avoid_null_checks_in_equality_operators
67
+
# - avoid_positional_boolean_parameters # not yet tested
68
+
# - avoid_private_typedef_functions # we prefer having typedef (discussion in https://github.com/flutter/flutter/pull/16356)
69
+
- avoid_relative_lib_imports
70
+
- avoid_renaming_method_parameters
71
+
- avoid_return_types_on_setters
72
+
# - avoid_returning_null # there are plenty of valid reasons to return null
73
+
# - avoid_returning_null_for_future # not yet tested
74
+
- avoid_returning_null_for_void
75
+
# - avoid_returning_this # there are plenty of valid reasons to return this
76
+
# - avoid_setters_without_getters # not yet tested
77
+
# - avoid_shadowing_type_parameters # not yet tested
78
+
# - avoid_single_cascade_in_expression_statements # not yet tested
79
+
- avoid_slow_async_io
80
+
- avoid_types_as_parameter_names
81
+
# - avoid_types_on_closure_parameters # conflicts with always_specify_types
82
+
- avoid_unused_constructor_parameters
83
+
- avoid_void_async
84
+
- await_only_futures
85
+
- camel_case_types
86
+
- cancel_subscriptions
87
+
# - cascade_invocations # not yet tested
88
+
# - close_sinks # not reliable enough
89
+
# - comment_references # blocked on https://github.com/flutter/flutter/issues/20765
90
+
# - constant_identifier_names # needs an opt-out https://github.com/dart-lang/linter/issues/204
91
+
- control_flow_in_finally
92
+
# - curly_braces_in_flow_control_structures # not yet tested
93
+
- directives_ordering
94
+
- empty_catches
95
+
- empty_constructor_bodies
96
+
- empty_statements
97
+
# - file_names # not yet tested
98
+
- flutter_style_todos
99
+
- hash_and_equals
100
+
- implementation_imports
101
+
# - invariant_booleans # too many false positives: https://github.com/dart-lang/linter/issues/811
102
+
- iterable_contains_unrelated_type
103
+
# - join_return_with_assignment # not yet tested
104
+
- library_names
105
+
- library_prefixes
106
+
# - lines_longer_than_80_chars # not yet tested
107
+
- list_remove_unrelated_type
108
+
# - literal_only_boolean_expressions # too many false positives: https://github.com/dart-lang/sdk/issues/34181
109
+
- no_adjacent_strings_in_list
110
+
- no_duplicate_case_values
111
+
- non_constant_identifier_names
112
+
# - null_closures # not yet tested
113
+
# - omit_local_variable_types # opposite of always_specify_types
114
+
# - one_member_abstracts # too many false positives
0 commit comments