We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
source.fixAll
Describe the bug In a project with a .vscode/settings.json file:
.vscode/settings.json
{ "editor.codeActionsOnSave": { "source.fixAll": "explicit", } }
This will not run custom_lint quick fixes on save, but successfully runs quick fixes of the base analyzer
custom_lint
analyzer
To Reproduce Any custom lint that has a quick fix.
Expected behavior The most important quick fix should run
The text was updated successfully, but these errors were encountered:
This isn't something that custom_lint can deal with. The issue is analyzer_plugin ; which doesn't offer a way to react to "fix all" events.
analyzer_plugin
Sorry, something went wrong.
dart-lang/sdk#55887
rrousselGit
No branches or pull requests
Describe the bug
In a project with a
.vscode/settings.json
file:This will not run
custom_lint
quick fixes on save, but successfully runs quick fixes of the baseanalyzer
To Reproduce
Any custom lint that has a quick fix.
Expected behavior
The most important quick fix should run
The text was updated successfully, but these errors were encountered: