- 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
14 lines
530 B
YAML
14 lines
530 B
YAML
include: ../analysis_options.yaml
|
|
|
|
analyzer:
|
|
errors:
|
|
# There are about 10k violations here due to missing return types on test
|
|
# methods.
|
|
inference_failure_on_function_return_type: ignore
|
|
|
|
# We sometimes name test classes with an underscore, and have a consistent
|
|
# practice of doing so. We do not have an problems of naming classes with
|
|
# snake_case, so we're not missing much by disabling it.
|
|
camel_case_types: ignore
|
|
constant_identifier_names: ignore
|
|
non_constant_identifier_names: ignore
|