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: ...@@ -24,6 +24,8 @@ analyzer:
strong-mode: strong-mode:
implicit-dynamic: false implicit-dynamic: false
errors: errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: warning
# allow overriding fields (if they use super, ideally...) # allow overriding fields (if they use super, ideally...)
strong_mode_invalid_field_override: ignore strong_mode_invalid_field_override: ignore
# allow type narrowing # allow type narrowing
......
...@@ -25,6 +25,8 @@ analyzer: ...@@ -25,6 +25,8 @@ analyzer:
strong-mode: strong-mode:
implicit-dynamic: false implicit-dynamic: false
errors: errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: warning
# allow overriding fields (if they use super, ideally...) # allow overriding fields (if they use super, ideally...)
strong_mode_invalid_field_override: ignore strong_mode_invalid_field_override: ignore
# allow type narrowing # allow type narrowing
......
...@@ -25,6 +25,8 @@ analyzer: ...@@ -25,6 +25,8 @@ analyzer:
enableSuperMixins: true enableSuperMixins: true
strong-mode: true strong-mode: true
errors: errors:
# treat missing required parameters as a warning (not a hint)
missing_required_param: warning
# allow overriding fields (if they use super, ideally...) # allow overriding fields (if they use super, ideally...)
strong_mode_invalid_field_override: ignore strong_mode_invalid_field_override: ignore
# allow type narrowing # 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