2025-05-14 12:53:51 +03:00
|
|
|
# This file configures the static analysis results for your project (errors,
|
|
|
|
|
# warnings, and lints).
|
|
|
|
|
#
|
|
|
|
|
# This enables the 'recommended' set of lints from `package:lints`.
|
|
|
|
|
# This set helps identify many issues that may lead to problems when running
|
|
|
|
|
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
|
|
|
|
|
# style and format.
|
|
|
|
|
#
|
|
|
|
|
# If you want a smaller set of lints you can change this to specify
|
|
|
|
|
# 'package:lints/core.yaml'. These are just the most critical lints
|
|
|
|
|
# (the recommended set includes the core lints).
|
|
|
|
|
# The core lints are also what is used by pub.dev for scoring packages.
|
|
|
|
|
|
|
|
|
|
include: package:lints/recommended.yaml
|
docs(annotations): unify and improve English DartDoc for all DI annotations
- Updated all annotation files with complete English DartDoc, field/class/method usage, practical code samples
- Unified documentation style for @inject, @injectable, @instance, @singleton, @named, @scope, @params, @provide, @module
- Removed Russian comments for clarity and consistency
- Improved discoverability and IDE/autocomplete experience for CherryPick DI users
- No functional or API changes; documentation/dev experience only
2025-08-12 16:18:53 +03:00
|
|
|
analyzer:
|
|
|
|
|
errors:
|
|
|
|
|
camel_case_types: ignore
|
2025-05-14 12:53:51 +03:00
|
|
|
|
|
|
|
|
# Uncomment the following section to specify additional rules.
|
|
|
|
|
|
|
|
|
|
# linter:
|
|
|
|
|
# rules:
|
|
|
|
|
# - camel_case_types
|
|
|
|
|
|
|
|
|
|
# analyzer:
|
|
|
|
|
# exclude:
|
|
|
|
|
# - path/to/excluded/files/**
|
|
|
|
|
|
|
|
|
|
# For more information about the core and recommended set of lints, see
|
|
|
|
|
# https://dart.dev/go/core-lints
|
|
|
|
|
|
|
|
|
|
# For additional information about configuring this file, see
|
|
|
|
|
# https://dart.dev/guides/language/analysis-options
|