Custom lints for common mistakes? #372
GroovinChip
started this conversation in
General
Replies: 1 comment
-
First lint idea: When working with Bad Sidebar(
builder: (context, scrollController) {
return const Column(); // Or some other widget
},
), Good Sidebar(
builder: (context, scrollController) {
return SidebarItems(
// Properties here
);
},
), Anyone have any thoughts on this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, everyone.
I'm toying with the idea of using Invertase's dart_custom_lint to address common mistakes developers might make while using
macos_ui
, but I'm having trouble coming up with any. So if anyone using this library finds themselves making some errors or mistakes that you think could be caught with lints, please report those here.Thanks!
Beta Was this translation helpful? Give feedback.
All reactions