[auth] Add linter rule for missing await (#732)
## Description ## Tests
This commit is contained in:
parent
8186246690
commit
e3655c4513
1 changed files with 3 additions and 0 deletions
|
@ -27,6 +27,7 @@ linter:
|
|||
- use_rethrow_when_possible
|
||||
- directives_ordering
|
||||
- always_use_package_imports
|
||||
- unawaited_futures
|
||||
|
||||
analyzer:
|
||||
errors:
|
||||
|
@ -45,6 +46,8 @@ analyzer:
|
|||
prefer_const_declarations: warning
|
||||
prefer_const_constructors_in_immutables: ignore # too many warnings
|
||||
|
||||
unawaited_futures: warning # convert to warning after fixing existing issues
|
||||
|
||||
avoid_renaming_method_parameters: ignore # incorrect warnings for `equals` overrides
|
||||
|
||||
exclude:
|
||||
|
|
Loading…
Reference in a new issue