flutter/dev/analysis_options.yaml

12 lines
349 B
YAML
Raw Normal View History

2021-10-07 23:48:04 +00:00
include: ../analysis_options.yaml
linter:
rules:
2021-10-15 05:03:03 +00:00
avoid_print: false # We use prints as debugging tools here a lot.
# Tests try to throw and catch things in exciting ways all the time, so
# we disable these lints for the tests.
only_throw_errors: false
avoid_catching_errors: false
avoid_catches_without_on_clauses: false