Skip to content

Instantly share code, notes, and snippets.

@heyhey1028
Created June 15, 2023 00:26
Show Gist options
  • Save heyhey1028/9cfe7ac30c7dc46b9aa1ebad6b110d81 to your computer and use it in GitHub Desktop.
Save heyhey1028/9cfe7ac30c7dc46b9aa1ebad6b110d81 to your computer and use it in GitHub Desktop.
My vscode format settings for Dart
{
"[dart]": {
"editor.defaultFormatter": "Dart-Code.dart-code",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
500
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false,
"editor.wordWrapColumn": 100000,
"editor.codeActionsOnSave": {
"source.fixAll": true
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment