mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-25 19:12:21 +00:00
36 lines
706 B
YAML
36 lines
706 B
YAML
include: package:flutter_lints/flutter.yaml
|
|
|
|
analyzer:
|
|
exclude:
|
|
- "**/*.g.dart"
|
|
- "**/*.freezed.dart"
|
|
- "packages/**/*.dart"
|
|
|
|
linter:
|
|
rules:
|
|
- require_trailing_commas
|
|
|
|
- prefer_collection_literals
|
|
- prefer_final_fields
|
|
- prefer_final_in_for_each
|
|
- prefer_final_locals
|
|
|
|
- sized_box_for_whitespace
|
|
- use_decorated_box
|
|
|
|
- unnecessary_parenthesis
|
|
- unnecessary_await_in_return
|
|
- unnecessary_raw_strings
|
|
|
|
- avoid_unnecessary_containers
|
|
- avoid_redundant_argument_values
|
|
- avoid_unused_constructor_parameters
|
|
|
|
- always_declare_return_types
|
|
|
|
- sort_constructors_first
|
|
- unawaited_futures
|
|
|
|
errors:
|
|
invalid_annotation_target: ignore
|