Files
mobile/analysis_options.yaml
T
Vincent Velociter e5b1002fc5 Try cupertino http client
There is currently an issue on iOS with very long loading times when the
device is offline. cupertino_http avoids that issue.
2023-11-08 10:42:27 +01:00

35 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:
directives_ordering: false
always_use_package_imports: false
avoid_redundant_argument_values: false
sort_pub_dependencies: true
sort_unnamed_constructors_first: false