Files
mobile/analysis_options.yaml
T
2023-11-30 13:29:16 +01:00

34 lines
1.0 KiB
YAML

# 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
errors:
invalid_annotation_target: ignore
plugins:
- custom_lint
linter:
rules:
always_use_package_imports: false
avoid_redundant_argument_values: false
sort_pub_dependencies: true
sort_unnamed_constructors_first: false