blob: 1a940d0a68e082fa9a042d6e73176b104bf8b5f1 [file] [log] [blame]
Ian Hicksonf25b8332021-10-07 16:48:04 -07001include: ../analysis_options.yaml
2
3linter:
4 rules:
Ian Hickson299d4842021-10-14 22:03:03 -07005 avoid_print: false # We use prints as debugging tools here a lot.
6
7 # Tests try to throw and catch things in exciting ways all the time, so
8 # we disable these lints for the tests.
9 only_throw_errors: false
10 avoid_catching_errors: false
11 avoid_catches_without_on_clauses: false