问题描述
我已经更新了 pedantic 包,结果出现了 1000 多个问题.其中许多是prefer_single_quotes 或不必要的等等.它们只需单击一下即可修复.我认为 eslint 或其他一些工具可以在 VSCode 中做到这一点.
I've updated pedantic package and ended up 1K+ problems. Many of them are prefer_single_quotes or unnecessary this etc. They are one click away to fix. I think eslint or some other tools can do that within the VSCode.
有没有办法用 Flutter 项目做到这一点?我找到了 dartfix 包,但在运行后说没有推荐的更改".我想要做的是修复问题选项卡上的所有可自动修复的问题.
Is there a way to do it with Flutter projects? I find dartfix package but says "No recommended changes" after running it. What I want to do is fix all the auto-fixable problems on the problems tab.
推荐答案
不确定您是否尝试过使用 dart fix 的内置修复.
Not sure if you have tried the built in fixes using dart fix.
使用 dart fix --dry-run
查看建议的更改,并使用 dart fix --apply
应用它们.
Use dart fix --dry-run
to see suggested changes and dart fix --apply
to apply them.
https://dart.dev/tools/dart-fix
这篇关于如何使用 Flutter 在 VSCode 上修复可自动修复的问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!