-
Notifications
You must be signed in to change notification settings - Fork 3
/
analysis_options.yaml
52 lines (45 loc) · 2.2 KB
/
analysis_options.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints. See the following for docs:
# https://dart.dev/guides/language/analysis-options
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
include: package:very_good_analysis/analysis_options.yaml # has more lints
analyzer:
language:
# Strict casts isn't helpful with null safety. It only notifies you on `dynamic`,
# which happens all the time in JSON.
#
# See https://github.com/dart-lang/language/blob/main/resources/type-system/strict-casts.md
strict-casts: false
# Don't let any types be inferred as `dynamic`.
#
# See https://github.com/dart-lang/language/blob/main/resources/type-system/strict-inference.md
strict-inference: true
# Don't let Dart infer the wrong type on the left side of an assignment.
#
# See https://github.com/dart-lang/language/blob/main/resources/type-system/strict-raw-types.md
strict-raw-types: true
exclude:
- lib/generated/**.dart
- test/**.dart
- example/**.dart
linter:
rules:
# Rules NOT in package:very_good_analysis
prefer_double_quotes: true
prefer_expression_function_bodies: true
# Rules to be disabled from package:very_good_analysis
prefer_single_quotes: false # prefer_double_quotes
lines_longer_than_80_chars: false # lines should be at most 100 chars
sort_pub_dependencies: false # Sort dependencies by function
use_key_in_widget_constructors: false # not in Flutter apps
directives_ordering: false # sort dart, then flutter, then package imports
always_use_package_imports: false # not when importing sibling files
sort_constructors_first: false # final properties, then constructor
avoid_dynamic_calls: false # this lint takes over errors in the IDE
one_member_abstracts: false # abstract classes are good for interfaces
cascade_invocations: false # cascades are often harder to read
# Temporarily disabled until we are ready to document
# public_member_api_docs: false