-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
31 lines (31 loc) · 892 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"editor.codeActionsOnSaveTimeout": 750,
"dart.completionCacheSize": 512,
"dart.analysisExcludedFolders": [
"build",
".dart_tool",
".pub-cache",
"generated",
"*.g.dart"
],
"dart.enableCompletionCaching": true,
"dart.enableSdkFormatter": false,
"dart.lineLength": 120,
"dart.showTodos": false,
"dart.previewLsp": true,
"editor.quickSuggestions": {
"other": "on",
"comments": "off",
"strings": "off"
},
"editor.suggestOnTriggerCharacters": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.snippetSuggestions": "top",
"editor.suggest.localityBonus": true,
"editor.suggest.shareSuggestSelections": true,
"editor.suggestSelection": "recentlyUsed"
}