flutter_analysis_options 1.99 KB
Newer Older
1 2 3 4 5 6
# 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/

7
# This file is the .analysis_options file used by "flutter analyze".
8 9 10 11
# It isn't named that because otherwise editors like Atom would try
# to use it, and that wouldn't work because it enables things that
# need to be silenced, in particular, public_member_api_docs.

12
analyzer:
13
  language:
14
    enableStrictCallChecks: true
15
    enableSuperMixins: true
Hixie's avatar
Hixie committed
16
  strong-mode: true
17 18 19 20 21
  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
Hixie's avatar
Hixie committed
22 23 24
    strong_mode_static_type_error: ignore
    strong_mode_down_cast_composite: ignore
    # we allow having TODOs in the code
25 26 27
    todo: ignore
linter:
  rules:
28
    - avoid_empty_else
29
    - always_declare_return_types
Ian Hickson's avatar
Ian Hickson committed
30
    - always_specify_types
31
    - annotate_overrides
32
    - avoid_as
Ian Hickson's avatar
Ian Hickson committed
33
    - avoid_init_to_null
34
    # - avoid_return_types_on_setters # https://github.com/dart-lang/linter/issues/202
35
    - camel_case_types
36
    # - constant_identifier_names # https://github.com/dart-lang/linter/issues/204 (and 203)
37
    - empty_constructor_bodies
38
    - hash_and_equals
39
    # - implementation_imports # https://github.com/dart-lang/linter/issues/203
Ian Hickson's avatar
Ian Hickson committed
40
    - library_names
41 42
    - library_prefixes
    - non_constant_identifier_names
43
    # - one_member_abstracts # https://github.com/dart-lang/linter/issues/203
Ian Hickson's avatar
Ian Hickson committed
44 45 46 47
    - package_api_docs
    - package_names
    - package_prefixed_library_names
    - prefer_is_not_empty
48
    - public_member_api_docs
49
    - slash_for_doc_comments
Ian Hickson's avatar
Ian Hickson committed
50 51
    - sort_constructors_first
    - sort_unnamed_constructors_first
52
    - super_goes_last
53
    - type_annotate_public_apis # subset of always_specify_types
54 55
    - type_init_formals
    - unnecessary_brace_in_string_interp
Ian Hickson's avatar
Ian Hickson committed
56
    - unnecessary_getters_setters