Skip to content

Commit

Permalink
try some lints (flutter#12719)
Browse files Browse the repository at this point in the history
* try some lints

* remove avoid_returning_this rule
  • Loading branch information
a14n authored Nov 10, 2017
1 parent 454db9d commit aefc62f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ linter:
- avoid_null_checks_in_equality_operators
# - avoid_positional_boolean_parameters # not yet tested
- avoid_return_types_on_setters
# - avoid_returning_null # not yet tested
# - avoid_returning_this # not yet tested
# - avoid_returning_null # we do this commonly
# - avoid_returning_this # https://github.com/dart-lang/linter/issues/842
# - avoid_setters_without_getters # not yet tested
# - avoid_types_on_closure_parameters # not yet tested
# - avoid_types_on_closure_parameters # conflicts with always_specify_types
- await_only_futures
- camel_case_types
# - cascade_invocations # not yet tested
Expand Down
6 changes: 3 additions & 3 deletions analysis_options_repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ linter:
- avoid_null_checks_in_equality_operators
# - avoid_positional_boolean_parameters # not yet tested
- avoid_return_types_on_setters
# - avoid_returning_null # not yet tested
# - avoid_returning_this # not yet tested
# - avoid_returning_null # we do this commonly
# - avoid_returning_this # https://github.com/dart-lang/linter/issues/842
# - avoid_setters_without_getters # not yet tested
# - avoid_types_on_closure_parameters # not yet tested
# - avoid_types_on_closure_parameters # conflicts with always_specify_types
- await_only_futures
- camel_case_types
# - cascade_invocations # not yet tested
Expand Down

0 comments on commit aefc62f

Please sign in to comment.