File tree Expand file tree Collapse file tree 2 files changed +15
-31
lines changed Expand file tree Collapse file tree 2 files changed +15
-31
lines changed Original file line number Diff line number Diff line change 1
- # This file configures the static analysis results for your project (errors,
2
- # warnings, and lints).
3
- #
4
- # This enables the 'recommended' set of lints from `package:lints`.
5
- # This set helps identify many issues that may lead to problems when running
6
- # or consuming Dart code, and enforces writing Dart using a single, idiomatic
7
- # style and format.
8
- #
9
- # If you want a smaller set of lints you can change this to specify
10
- # 'package:lints/core.yaml'. These are just the most critical lints
11
- # (the recommended set includes the core lints).
12
- # The core lints are also what is used by pub.dev for scoring packages.
13
-
14
- include : package:lints/recommended.yaml
15
-
16
- # Uncomment the following section to specify additional rules.
17
-
18
- # linter:
19
- # rules:
20
- # - camel_case_types
21
-
22
- # analyzer:
23
- # exclude:
24
- # - path/to/excluded/files/**
25
-
26
- # For more information about the core and recommended set of lints, see
27
- # https://dart.dev/go/core-lints
28
-
29
- # For additional information about configuring this file, see
30
- # https://dart.dev/guides/language/analysis-options
1
+ include : package:very_good_analysis/analysis_options.yaml
2
+
3
+ analyzer :
4
+ errors :
5
+ unawaited_futures : warning
6
+ avoid_void_async : warning
7
+ missing_return : error
8
+ missing_required_param : error
9
+ invalid_annotation_target : info
10
+
11
+ language :
12
+ strict-casts : true
13
+ strict-inference : true
14
+ strict-raw-types : true
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ dependencies:
12
12
13
13
dev_dependencies :
14
14
http : ^1.2.1
15
- lints : " >=2 .1.1 <4.0.0 "
15
+ very_good_analysis : ^5 .1.0
16
16
mocktail : ^1.0.3
17
17
test : ^1.25.2
You can’t perform that action at this time.
0 commit comments