21 lines
608 B
YAML
21 lines
608 B
YAML
|
|
# https://dart.dev/tools/analysis#the-analysis-options-file
|
||
|
|
include: package:dart_flutter_team_lints/analysis_options.yaml
|
||
|
|
|
||
|
|
analyzer:
|
||
|
|
language:
|
||
|
|
strict-casts: true
|
||
|
|
errors:
|
||
|
|
only_throw_errors: ignore
|
||
|
|
unawaited_futures: ignore
|
||
|
|
inference_failure_on_instance_creation: ignore
|
||
|
|
inference_failure_on_function_invocation: ignore
|
||
|
|
inference_failure_on_collection_literal: ignore
|
||
|
|
|
||
|
|
linter:
|
||
|
|
rules:
|
||
|
|
- avoid_unused_constructor_parameters
|
||
|
|
- literal_only_boolean_expressions
|
||
|
|
- missing_whitespace_between_adjacent_strings
|
||
|
|
- no_adjacent_strings_in_list
|
||
|
|
- no_runtimeType_toString
|