Skip to content

Instantly share code, notes, and snippets.

@WojuadeAA
Created July 31, 2023 09:26
Show Gist options
  • Select an option

  • Save WojuadeAA/d3369399c244bc0eaaaa80074494ad74 to your computer and use it in GitHub Desktop.

Select an option

Save WojuadeAA/d3369399c244bc0eaaaa80074494ad74 to your computer and use it in GitHub Desktop.
My VSCode settings for flutter projects
{
"editor.fontLigatures": true,
"dart.maxLogLineLength": 100000,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true,
},
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"dart.flutterSdkPath": ".fvm/flutter_sdk",
"search.exclude": {
"**/.fvm": true
},
// Remove from file watching
"files.watcherExclude": {
"**/.fvm": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment