-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalysis_options.yaml
35 lines (32 loc) · 1.26 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
# 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.5.1.0.yaml
analyzer:
# Excluding generated files
exclude:
- "**/*.g.dart"
- "**/*.freezed.dart"
- "**/*.mocks.dart"
- "lib/iot/iot_upload_target.dart"
- "packages/journee_api_client/**"
errors:
# Recent versions of `json_serializable` and `meta` (used by `freezed`) may
# emit `invalid_annotation_target` errors. They are safe to ignore.
invalid_annotation_target: ignore
plugins:
- custom_lint
linter:
rules:
public_member_api_docs: false
library_private_types_in_public_api: false
implementation_imports: false
flutter_style_todos: false
avoid_positional_boolean_parameters: false
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options