-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathanalysis_options.yaml
29 lines (26 loc) · 1 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
# 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:flutter_lints/flutter.yaml
analyzer:
exclude:
- "lib/models/old"
errors:
must_be_immutable: ignore
dead_null_aware_expression: ignore
unused_local_variable: ignore
unnecessary_null_comparison: ignore
use_key_in_widget_constructors: ignore
linter:
rules:
library_private_types_in_public_api: false
use_build_context_synchronously: false
file_names: false
avoid_print: false
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options