- Add VariableSpec class with magnitude field validation - Add Formula class supporting multiple input/output variables - Support d4rt_code as string or object with code field - Add comprehensive tests for parsing and serialization - Fix broken test import in pruebas_d4rt_test.dart Follows README.md format requirements exactly
22 lines
626 B
YAML
22 lines
626 B
YAML
# https://dart.dev/tools/analysis#the-analysis-options-file
|
|
include: package:dart_flutter_team_lints/analysis_options.yaml
|
|
|
|
analyzer:
|
|
language:
|
|
strict-casts: true
|
|
strict-raw-types: true
|
|
|
|
linter:
|
|
rules:
|
|
- avoid_private_typedef_functions
|
|
- avoid_redundant_argument_values
|
|
- avoid_unused_constructor_parameters
|
|
- avoid_void_async
|
|
- cancel_subscriptions
|
|
- literal_only_boolean_expressions
|
|
- missing_whitespace_between_adjacent_strings
|
|
- no_adjacent_strings_in_list
|
|
- no_runtimeType_toString
|
|
- prefer_const_declarations
|
|
- unnecessary_await_in_return
|
|
- use_string_buffers
|