-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis_options.yaml
More file actions
30 lines (26 loc) · 1.08 KB
/
Copy pathanalysis_options.yaml
File metadata and controls
30 lines (26 loc) · 1.08 KB
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
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# 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`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:very_good_analysis/analysis_options.yaml
linter:
rules:
public_member_api_docs: false
# Style customization overrides
sort_constructors_first: false
always_put_required_named_parameters_first: false
prefer_initializing_formals: false
avoid_redundant_argument_values: false
cascade_invocations: false
lines_longer_than_80_chars: false
sort_pub_dependencies: false
one_member_abstracts: false
# Clean code lints to keep active
always_use_package_imports: true
avoid_dynamic_calls: true
avoid_slow_async_io: true
unnecessary_await_in_return: true