mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 13:03:11 +00:00
- Downgraded Flutter version in .fvmrc from 3.29.3 to 3.27.0 for compatibility with current dependencies - Raised Dart SDK constraint in benchmark_di/pubspec.yaml from >=3.0.0 <4.0.0 to >=3.2.0 <4.0.0 to align with required package minimums This change ensures environment compatibility for dependency resolution and build tools. No functional code changes.
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
# 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
|
|
|
|
# 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
|
|
|
|
analyzer:
|
|
errors:
|
|
deprecated_member_use: ignore
|
|
unintended_html_in_doc_comment: ignore |