mirror of
https://github.com/localsend/localsend.git
synced 2026-04-18 14:07:47 -04:00
21 lines
682 B
YAML
21 lines
682 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:
|
|
- lib/**.g.dart
|
|
|
|
linter:
|
|
rules:
|
|
avoid_print: false
|
|
use_key_in_widget_constructors: false
|
|
sort_pub_dependencies: true
|