-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update all lints
and dart_flutter_team_lints
dependencies
#161
Update all lints
and dart_flutter_team_lints
dependencies
#161
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm! Thanks @parlough!
@@ -33,8 +33,8 @@ class BuildOutput { | |||
Metadata? metadata, | |||
}) : timestamp = (timestamp ?? DateTime.now()).roundDownToSeconds(), | |||
assets = assets ?? [], | |||
dependencies = dependencies ?? Dependencies([]), | |||
metadata = metadata ?? Metadata({}); | |||
dependencies = dependencies ?? const Dependencies([]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that this leads to unmodifiable lists trying to get modified:
https://github.com/dart-lang/native/actions/runs/6665614043/job/18115686857?pr=167
@parlough it seems we're running into unmodifiable list errors being thrown in various places because the default values for arguments are now not modifiable. Could you please submit a PR to make the defaults modifiable again (and test it with unit tests). I'm not sure why this was not caught by the CI earlier. 🙈 |
package:dart_flutter_team_lints
andpackage:lints
.analysis_options.yaml
files