Commit 39f7d58b authored by Phil Quitslund's avatar Phil Quitslund Committed by GitHub

Escalate `missing_required_param` hints to warnings (#8087). (#8096)

Fixes: #8087.
parent d4550fd4
......@@ -24,6 +24,8 @@ analyzer:
strong-mode:
implicit-dynamic: false
errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: warning
# allow overriding fields (if they use super, ideally...)
strong_mode_invalid_field_override: ignore
# allow type narrowing
......
......@@ -25,6 +25,8 @@ analyzer:
strong-mode:
implicit-dynamic: false
errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: warning
# allow overriding fields (if they use super, ideally...)
strong_mode_invalid_field_override: ignore
# allow type narrowing
......
......@@ -25,6 +25,8 @@ analyzer:
enableSuperMixins: true
strong-mode: true
errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: warning
# allow overriding fields (if they use super, ideally...)
strong_mode_invalid_field_override: ignore
# allow type narrowing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment