-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathanalysis_options.yaml
More file actions
25 lines (22 loc) · 868 Bytes
/
analysis_options.yaml
File metadata and controls
25 lines (22 loc) · 868 Bytes
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
include: package:very_good_analysis/analysis_options.yaml
linter:
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
analyzer:
plugins:
- custom_lint
exclude:
- '**.freezed.dart'
- '**.gen.dart'
- '**.g.dart'
- '**.gr.dart'
- '**/generated_plugin_registrant.dart'
- '**/common/firebase_options.dart'