Created
June 15, 2023 00:26
-
-
Save heyhey1028/9cfe7ac30c7dc46b9aa1ebad6b110d81 to your computer and use it in GitHub Desktop.
My vscode format settings for Dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"[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