todo_app/analysis_options.yaml
PeterChrz 514adde721
Some checks failed
CI / Static Analysis (push) Failing after 2m7s
CI / Tests (push) Has been skipped
Initial commit: Flutter todo app with Riverpod
2026-08-04 23:40:54 -04:00

27 lines
641 B
YAML

include: package:flutter_lints/flutter.yaml
linter:
rules:
- always_declare_return_types
- annotate_overrides
- avoid_empty_else
- avoid_print
- avoid_unnecessary_containers
- avoid_web_libraries_in_flutter
- no_logic_in_create_state
- prefer_const_constructors
- prefer_const_declarations
- prefer_final_locals
- prefer_single_quotes
- sort_child_properties_last
- unawaited_futures
- use_build_context_synchronously
- use_key_in_widget_constructors
analyzer:
errors:
missing_return: error
dead_code: warning
exclude:
- '**/*.g.dart'
- '**/*.freezed.dart'