-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathanalysis_options.yaml
More file actions
31 lines (28 loc) · 1018 Bytes
/
Copy pathanalysis_options.yaml
File metadata and controls
31 lines (28 loc) · 1018 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
26
27
28
29
30
31
# 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
linter:
# https://dart.dev/tools/linter-rules
rules:
avoid_relative_lib_imports: true
directives_ordering: true
prefer_const_constructors: true
prefer_const_declarations: true
prefer_const_literals_to_create_immutables: true
prefer_relative_imports: true
prefer_single_quotes: true
unawaited_futures: true
analyzer:
plugins:
- custom_lint
exclude:
- "**/*.drift.dart"
- "**/*.freezed.dart"
- "**/*.g.dart"
- "lib/src/generated/**"