-
Notifications
You must be signed in to change notification settings - Fork 11
/
analysis_options.yaml
44 lines (33 loc) · 984 Bytes
/
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
include: all_lint_rules.yaml
analyzer:
exclude:
- example/**
strong-mode:
implicit-casts: false
implicit-dynamic: false
errors:
included_file_warning: ignore
linter:
rules:
# Conflicts with prefer single quotes
prefer_double_quotes: false
# Prefer to omit them
always_specify_types: false
# Nothing is public
public_member_api_docs: false
# 120 is used as line length
lines_longer_than_80_chars: false
# Using immutability makes for more readable code
unnecessary_final: false
# I find this less clear than escaped characters
use_raw_strings: false
# Weird rule
avoid_as: false
# Sometimes the condition is obvious
prefer_asserts_with_message: false
# With null-safety this should be fine
avoid_returning_null: false
# Relative imports are better
always_use_package_imports: false
# Sometimes it is clearer to be explicit
avoid_redundant_argument_values: false