-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtalks.code-workspace
More file actions
50 lines (50 loc) · 1.02 KB
/
talks.code-workspace
File metadata and controls
50 lines (50 loc) · 1.02 KB
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
{
"folders": [
{
"name": "Physical UI App",
"path": "./apps/physical_ui"
},
{
"name": "Gaussian Splatting App",
"path": "./apps/gaussian_splatting"
},
{
"name": "WNMA Talk Package",
"path": "./packages/wnma_talk"
},
{
"name": "WNMI Design Package",
"path": "./packages/wnmi_design"
},
{
"name": "Root",
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"dart.formatOnSave": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Dart-Code.dart-code"
},
"dart.lineLength": 80,
"dart.flutterSdkPath": "/Users/jesper/Development/SDKs/flutter",
"dart.analysisExcludedFolders": [
".dart_tool",
"build",
".fvm"
],
"files.watcherExclude": {
"**/.dart_tool/**": true,
"**/build/**": true,
"**/.fvm/**": true
}
},
"extensions": {
"recommendations": [
"Dart-Code.dart-code",
"Dart-Code.flutter"
]
}
}