-
Notifications
You must be signed in to change notification settings - Fork 9
/
analysis_options.yaml
52 lines (50 loc) · 1.14 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
include: package:lint/analysis_options.yaml
# include: package:pedantic/analysis_options.yaml
linter:
rules:
unawaited_futures: true
directives_ordering: false
sort_pub_dependencies: false
analyzer:
strong-mode:
# https://github.com/dart-lang/sdk/issues/25368
implicit-casts: false
# implicit-dynamic: false
errors:
# todo: true
unnecessary_raw_strings: false
prefer_const_literals_to_create_immutables: false
prefer_const_constructors_in_immutables: false
prefer_const_constructors: false
prefer_const_declarations: false
avoid_void_async: false
no_runtimetype_tostring: false
exclude:
- .dart_tool/**
- .editorconfig
- .flutter-plugins
- .flutter-plugins-dependencies
- .gitignore
- .idea/**
- .pre-commit-config.yaml
- .vscode/**
- README.md
- android
- apps/**
- assets/**
- scripts/**
- build.yaml
- build/**
- go/**
- ios/**
- lib/_**/**
- lib/**.g.dart
- lib/**.freezed.dart
- application_bundle/**
- linux/**
- macos/**
- plugins/**
- pubspec.lock
- pubspec.yaml
- web/**
- packages/**