-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
analysis_options.yaml
35 lines (32 loc) · 1.06 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:lint/strict.yaml
analyzer:
language:
strict-casts: true
strict-inference: true
strict-raw-types: true
exclude:
- "**/*.g.dart"
- "**/*.freezed.dart"
- lib/src/styles/lichess_icons.dart
- lib/src/styles/social_icons.dart
- lib/firebase_options.dart
- lib/l10n/*.dart
errors:
invalid_annotation_target: ignore
plugins:
- custom_lint
linter:
rules:
prefer_single_quotes: true
always_use_package_imports: false
avoid_redundant_argument_values: false
sort_pub_dependencies: true
sort_unnamed_constructors_first: false