mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
1197e15a7e
This CL enables the avoid_void_async lint in the CFE, makes the needed changes and adds the missing `await` (because the lint `unawaited_futures` doesn't react to void async methods). Change-Id: Iffc1f173badd3c2d48356ee02e81a9aed492ce5d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/213481 Commit-Queue: Jens Johansen <jensj@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
24 lines
751 B
YAML
24 lines
751 B
YAML
# Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
include: analysis_options_no_lints.yaml
|
|
|
|
linter:
|
|
rules:
|
|
- curly_braces_in_flow_control_structures
|
|
- prefer_adjacent_string_concatenation
|
|
- unawaited_futures
|
|
- avoid_void_async
|
|
- recursive_getters
|
|
- avoid_empty_else
|
|
- empty_statements
|
|
- list_remove_unrelated_type
|
|
- iterable_contains_unrelated_type
|
|
- valid_regexps
|
|
- package_api_docs
|
|
- lines_longer_than_80_chars
|
|
- unrelated_type_equality_checks
|
|
- annotate_overrides
|
|
- always_declare_return_types
|
|
# - always_specify_types
|