You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The flutter_lints rule always_put_required_named_parameters_first enforces placing required named parameters before others. I propose extending and enhancing this rule in solid_lint to support a more flexible ordering for different types of parameters, offering greater control and consistency.
The
flutter_lints
rulealways_put_required_named_parameters_first
enforces placing required named parameters before others. I propose extending and enhancing this rule insolid_lint
to support a more flexible ordering for different types of parameters, offering greater control and consistency.Suggested parameter types:
super
: parameters for constructors usingsuper
.required
: Mandatory, non-nullable parameters.nullable
: Optional parameters that may benull
.default
: parameters with default values.Proposed rule configuration:
For example:
The text was updated successfully, but these errors were encountered: