mirror of
https://github.com/janoodleFTW/timy-messenger.git
synced 2026-01-22 18:05:13 +00:00
57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
# Specify analysis options.
|
|
#
|
|
# For a list of lints, see: http://dart-lang.github.io/linter/lints/
|
|
# See the configuration guide for more
|
|
# https://github.com/dart-lang/sdk/tree/master/pkg/analyzer#configuring-the-analyzer
|
|
#
|
|
# There are four similar analysis options files in the flutter repos:
|
|
# - analysis_options.yaml
|
|
# - packages/flutter/lib/analysis_options_user.yaml (this file)
|
|
# - https://github.com/flutter/plugins/blob/master/analysis_options.yaml
|
|
# - https://github.com/flutter/engine/blob/master/analysis_options.yaml
|
|
#
|
|
analyzer:
|
|
errors:
|
|
# treat missing required parameters as a warning (not a hint)
|
|
missing_required_param: warning
|
|
exclude:
|
|
- '**.g.dart'
|
|
|
|
linter:
|
|
rules:
|
|
- avoid_empty_else
|
|
- avoid_init_to_null
|
|
- avoid_return_types_on_setters
|
|
- await_only_futures
|
|
- camel_case_types
|
|
- cancel_subscriptions
|
|
- close_sinks
|
|
- control_flow_in_finally
|
|
- empty_constructor_bodies
|
|
- empty_statements
|
|
- hash_and_equals
|
|
- implementation_imports
|
|
- library_names
|
|
- non_constant_identifier_names
|
|
- package_api_docs
|
|
- package_names
|
|
- package_prefixed_library_names
|
|
- prefer_const_constructors_in_immutables
|
|
- prefer_double_quotes
|
|
- prefer_final_fields
|
|
- prefer_final_in_for_each
|
|
- prefer_final_locals
|
|
- prefer_is_not_empty
|
|
- slash_for_doc_comments
|
|
- test_types_in_equals
|
|
- throw_in_finally
|
|
- type_init_formals
|
|
- unawaited_futures
|
|
- unnecessary_brace_in_string_interps
|
|
- unnecessary_const
|
|
- unnecessary_getters_setters
|
|
- unnecessary_new
|
|
- unnecessary_statements
|
|
- unnecessary_this
|
|
- unrelated_type_equality_checks
|
|
- valid_regexps
|