First of all, make sure you have in your project folder a .vscode/settings.json
file.
Format on Save
{
// ...
"editor.formatOnSave": true,
}
Code Actions on Save
{
// ...
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
},
}
Flutter
If you want to fix all analysis issues identified by
dart analyzer
, you can use the vscode flutter fix all command..vscode/settings.json { // ... "[dart]": { "editor.codeActionsOnSave": { "source.fixAll": "explicit", "source.organizeImports": "explicit", }, }, }
File Nesting
Do you have a lot of code-generated files and want to hide them by default the project explorer?
{
// ...
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
"explorer.fileNesting.patterns": {
"pubspec.yaml": "pubspec.lock,pubspec_overrides.yaml,.packages,.flutter-plugins,.flutter-plugins-dependencies,.metadata",
"*.dart": "${capture}.g.dart, ${capture}.freezed.dart",
},
}