-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.code-workspace
54 lines (54 loc) · 1.11 KB
/
app.code-workspace
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"folders": [
{
"name": "app",
"path": "."
},
{
"name": "android",
"path": "android"
},
{
"name": "ios",
"path": "ios"
}
],
"settings": {
"files.associations": {
".flutter_plugins": "plaintext"
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"dart.lineLength": 100,
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch a_hat_game",
"type": "dart",
"request": "launch",
"program": "lib/main.dart"
}
]
},
"extensions": {
"recommendations": [
"dart-code.dart-code",
"dart-code.flutter",
"redhat.vscode-yaml",
"editorconfig.editorconfig",
"skellock.just",
"zxh404.vscode-proto3",
"gruntfuggly.todo-tree",
"redhat.vscode-xml"
]
}
}