2023-07-06 17:18:41 +03:30
|
|
|
include: package:lint/strict.yaml
|
|
|
|
|
|
|
|
|
|
analyzer:
|
|
|
|
|
plugins:
|
|
|
|
|
- custom_lint
|
|
|
|
|
exclude:
|
2023-09-06 23:06:52 +03:30
|
|
|
- "libcore/**"
|
2023-07-06 17:18:41 +03:30
|
|
|
- "**.g.dart"
|
|
|
|
|
- "lib/gen/**"
|
|
|
|
|
errors:
|
|
|
|
|
invalid_annotation_target: ignore
|
|
|
|
|
|
|
|
|
|
linter:
|
|
|
|
|
rules:
|
|
|
|
|
sort_pub_dependencies: false
|
|
|
|
|
sort_unnamed_constructors_first: false
|
|
|
|
|
avoid_classes_with_only_static_members: false
|
|
|
|
|
|
|
|
|
|
custom_lint:
|
|
|
|
|
rules:
|
|
|
|
|
# Enable one rule
|
|
|
|
|
- provider_parameters
|