-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Migrate from deprecated pedantic to flutter_lints #519
Migrate from deprecated pedantic to flutter_lints #519
Conversation
Change looks good to me, need to finish the static analysis and see if it all works, then it can be approved and merged |
As you can see @adityathakurxd there's a bunch of static analysis issues that came out since the |
Yes, I'll look into this @miquelbeltran Thank you for reviewing. I wanted to ask like some of these messages in https://github.com/fluttercommunity/plus_plugins/pull/519/checks?check_run_id=3811595912 include |
I am OK with plugins using I would also considering having a global |
Okay. I'll add the rule. There is a global |
@miquelbeltran I would suggest switching from |
love the idea! I would suggest to do it on a separated PR after this one if possible. |
actually no need to wait for this PR ;) |
I have updated the PR with the required changes @miquelbeltran
|
thank you @adityathakurxd seems that the analyze is passing I will merge once CI finishes |
Thank you so much @miquelbeltran 🎉 |
Description
Migrated all packages from deprecated
pedantic
toflutter_lints
.Added dev_dependency on package:
flutter_lints
to all project’s pubspec.yamlSince the project already had a custom
analysis_options.yaml
file at its root, I addedinclude: package:flutter_lints/flutter.yaml
to it.Related Issues
#471
Checklist
Before you create this PR confirm that it meets all requirements listed below by checking the relevant checkboxes (
[x]
).This will ensure a smooth and quick review process. Updating the
pubspec.yaml
and changelogs is not required.///
).flutter analyze
) does not report any problems on my PR.Breaking Change
Does your PR require plugin users to manually update their apps to accommodate your change?