20 lines
441 B
YAML
20 lines
441 B
YAML
include: package:flutter_lints/flutter.yaml
|
|
|
|
analyzer:
|
|
language:
|
|
strict-casts: true
|
|
strict-inference: true
|
|
strict-raw-types: true
|
|
|
|
linter:
|
|
rules:
|
|
always_declare_return_types: true
|
|
always_use_package_imports: true
|
|
avoid_dynamic_calls: true
|
|
avoid_print: true
|
|
directives_ordering: true
|
|
prefer_final_fields: true
|
|
prefer_final_locals: true
|
|
sort_constructors_first: true
|
|
unawaited_futures: true
|