28 lines
932 B
YAML
28 lines
932 B
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:flutter_lints/flutter.yaml
|
|
|
|
analyzer:
|
|
exclude: [build/**]
|
|
language:
|
|
strict-raw-types: true
|
|
strong-mode:
|
|
implicit-casts: true
|
|
errors:
|
|
must_be_immutable: ignore
|
|
|
|
linter:
|
|
rules:
|
|
non_constant_identifier_names: false
|
|
# avoid_print: false # Uncomment to disable the `avoid_print` rule
|
|
prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
|
|
prefer_const_constructors: false
|
|
|