19 lines
438 B
YAML
19 lines
438 B
YAML
include: package:flutter_lints/flutter.yaml
|
|
|
|
analyzer:
|
|
errors:
|
|
# Treat these as errors, not warnings.
|
|
missing_required_param: error
|
|
missing_return: error
|
|
exclude:
|
|
- lib/proto/**.pb.dart
|
|
- lib/proto/**.pbenum.dart
|
|
- lib/proto/**.pbjson.dart
|
|
|
|
linter:
|
|
rules:
|
|
# Encourage good practice.
|
|
prefer_const_constructors: true
|
|
prefer_final_locals: true
|
|
avoid_print: true
|
|
require_trailing_commas: true |