2021-11-19 10:50:09 +03:00
|
|
|
# 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:
|
|
|
|
# The lint rules applied to this project can be customized in the
|
|
|
|
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
|
|
|
|
# included above or to enable additional rules. A list of all available lints
|
|
|
|
# and their documentation is published at
|
|
|
|
# https://dart-lang.github.io/linter/lints/index.html.
|
|
|
|
#
|
|
|
|
# Instead of disabling a lint rule for the entire project in the
|
|
|
|
# section below, it can also be suppressed for a single line of code
|
|
|
|
# or a specific dart file by using the `// ignore: name_of_lint` and
|
|
|
|
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
|
|
|
|
# producing the lint.
|
|
|
|
rules:
|
2023-11-27 14:26:34 +03:00
|
|
|
- prefer_single_quotes
|
|
|
|
- unawaited_futures # Explicitly mark futures which are not being awaited
|
|
|
|
- directives_ordering # Force ordering of imports
|
|
|
|
- prefer_relative_imports
|
2021-11-19 10:50:09 +03:00
|
|
|
|
|
|
|
# Additional information about this file can be found at
|
|
|
|
# https://dart.dev/guides/language/analysis-options
|
2021-11-22 11:58:07 +03:00
|
|
|
|
|
|
|
analyzer:
|
2023-10-31 16:35:11 +03:00
|
|
|
optional-checks:
|
|
|
|
chrome-os-manifest-checks
|
2021-11-22 11:58:07 +03:00
|
|
|
exclude:
|
|
|
|
- "**/*.g.dart"
|
2023-10-31 16:35:11 +03:00
|
|
|
- "**/*.freezed.dart"
|
2023-11-28 16:11:43 +03:00
|
|
|
- "build/**/intermediates/**/AndroidManifest.xml"
|
2024-01-24 14:35:09 +03:00
|
|
|
errors:
|
|
|
|
invalid_annotation_target: ignore # see https://github.com/rrousselGit/freezed/issues/488
|
2023-11-27 12:51:36 +03:00
|
|
|
plugins:
|
2023-11-28 16:11:43 +03:00
|
|
|
- custom_lint
|