flutter/packages/flutter_tools/.analysis_options

48 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-03-10 21:47:20 +00:00
# Specify analysis options.
#
# Note that until there is a default "all-in" lint rule-set we need
# to opt-in to all desired lints (https://github.com/dart-lang/sdk/issues/25843).
# For a list of lints, see: http://dart-lang.github.io/linter/lints/
analyzer:
language:
enableSuperMixins: true
strong-mode: false #TODO(pq): enable once strong-mode runs clean
2016-03-10 21:47:20 +00:00
errors:
# we allow overriding fields (if they use super, ideally...)
strong_mode_invalid_field_override: ignore
# we allow type narrowing
strong_mode_invalid_method_override: ignore
todo: ignore
linter:
rules:
- avoid_empty_else
2016-03-10 21:47:20 +00:00
- always_declare_return_types
# - always_specify_types # still a lot of work to do before enabling this one
# - annotate_overrides # still a lot of work to do before enabling this one
# - avoid_as # https://github.com/dart-lang/linter/issues/195
- avoid_init_to_null
# - avoid_return_types_on_setters # still a lot of work to do before enabling this one
2016-03-10 21:47:20 +00:00
- camel_case_types
# - constant_identifier_names # still a lot of work to do before enabling this one
2016-03-10 21:47:20 +00:00
- empty_constructor_bodies
- hash_and_equals
# - implementation_imports # "// ignore:" isn't working yet
- library_names
2016-03-10 21:47:20 +00:00
- library_prefixes
- non_constant_identifier_names
# - one_member_abstracts # "// ignore:" isn't working yet
- package_api_docs
- package_names
- package_prefixed_library_names
- prefer_is_not_empty
# - public_member_api_docs # still a lot of work to do before enabling this one
2016-03-10 21:47:20 +00:00
- slash_for_doc_comments
- sort_constructors_first
- sort_unnamed_constructors_first
2016-03-10 21:47:20 +00:00
- super_goes_last
# - type_annotate_public_apis # see always_specify_types, which this is a subset of
2016-03-10 21:47:20 +00:00
- type_init_formals
- unnecessary_brace_in_string_interp
- unnecessary_getters_setters