a11d2feb92
Change-Id: Id2c57e56425aa31e86b78f081d71575e8fec7838 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/406722 Auto-Submit: Phil Quitslund <pquitslund@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Phil Quitslund <pquitslund@google.com>
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
include: package:lints/recommended.yaml
|
|
|
|
analyzer:
|
|
language:
|
|
strict-casts: true
|
|
strict-raw-types: true
|
|
errors:
|
|
# Increase the severity of the unused_import hint.
|
|
unused_import: warning
|
|
|
|
# Lints from the recommended set that conflict w/ analyzer style or will
|
|
# require some work to reach compliance.
|
|
# See: https://github.com/dart-lang/sdk/issues/48785
|
|
|
|
# A fair amount of lib/ code (especially protocol-related code) does not
|
|
# comply.
|
|
constant_identifier_names: ignore
|
|
# This package imports much of the implementation libraries of the
|
|
# 'analyzer' (and sometimes the '_fe_analyzer_shared' package), because it
|
|
# is tightly integrated. This will not likely change any time soon.
|
|
implementation_imports: ignore
|
|
# There are just over 100 violations of this, which can likely be ignored
|
|
# on a case-by-case or file-by-file basis.
|
|
non_constant_identifier_names: ignore
|
|
overridden_fields: ignore
|
|
todo: ignore
|
|
# Existing violations (361)
|
|
unintended_html_in_doc_comment: ignore
|
|
|
|
linter:
|
|
rules:
|
|
- analyzer_use_new_elements
|
|
- avoid_redundant_argument_values
|
|
- flutter_style_todos
|
|
- library_annotations
|
|
- prefer_single_quotes
|
|
- unawaited_futures
|
|
- unnecessary_breaks
|
|
- unnecessary_final
|
|
- unnecessary_ignore
|
|
- unnecessary_library_directive
|
|
- unnecessary_parenthesis
|
|
- unreachable_from_main
|