mirror of
https://github.com/lichess-org/mobile.git
synced 2026-05-26 13:50:52 +00:00
41 lines
1.2 KiB
YAML
41 lines
1.2 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
|
|
- lib/l10n/*.dart
|
|
errors:
|
|
invalid_annotation_target: ignore
|
|
plugins:
|
|
- custom_lint
|
|
|
|
formatter:
|
|
page_width: 100
|
|
|
|
linter:
|
|
rules:
|
|
document_ignores: false
|
|
require_trailing_commas: false
|
|
prefer_single_quotes: true
|
|
always_use_package_imports: true
|
|
avoid_redundant_argument_values: false
|
|
sort_pub_dependencies: true
|
|
sort_unnamed_constructors_first: false
|