14ff1f2d35
Change-Id: Ia10cf89443208ef133dd1ce8d68ee7c6b4129fbb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/276800 Reviewed-by: Sigmund Cherem <sigmund@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com> Reviewed-by: Stephen Adams <sra@google.com> Reviewed-by: Samuel Rawlins <srawlins@google.com>
29 lines
818 B
YAML
29 lines
818 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
|
|
|
|
analyzer:
|
|
errors:
|
|
illegal_language_version_override: ignore
|
|
|
|
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
|