-
Notifications
You must be signed in to change notification settings - Fork 4
/
flutter-lyra.code-workspace
90 lines (90 loc) · 2.05 KB
/
flutter-lyra.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"folders": [
{
"name": "💻 Flutter Lyra",
"path": "flutter_lyra"
},
{
"name": "📱 Flutter Lyra Example",
"path": "flutter_lyra/example"
},
{
"name": "🤖 Lyra - Android",
"path": "flutter_lyra_android"
},
{
"name": "🍏 Lyra - iOS",
"path": "flutter_lyra_ios"
},
{
"name": "📚 Lyra - Platform Interface",
"path": "flutter_lyra_platform_interface"
},
{
"name": "🚀 Devops",
"path": ".github"
},
{
"name": "🌪 All",
"path": "./"
}
],
"extensions": {
"recommendations": [
"dart-code.dart-code",
"dart-code.flutter",
"streetsidesoftware.code-spell-checker"
]
},
"settings": {
"git.ignoreLimitWarning": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"search.exclude": {
"**/.fvm": true
},
"files.watcherExclude": {
"**/.fvm": true,
"**/__generated__/**": false,
"**/.packages": true,
"**/.flutter-plugins*": true,
"**/.metadata": true,
"**/build": true,
"**/coverage": true,
"**/.dart_tool": true
},
"cSpell.words": [
"mocktail"
],
"java.configuration.updateBuildConfiguration": "interactive"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Flutter Lyra Example Debug",
"request": "launch",
"type": "dart",
"cwd": "${workspaceFolder:📱 Flutter Lyra Example}",
"program": "lib/main.dart",
},
{
"name": "Flutter Lyra Example Profile",
"request": "launch",
"type": "dart",
"cwd": "${workspaceFolder:📱 Flutter Lyra Example}",
"program": "lib/main.dart",
"flutterMode": "profile",
},
{
"name": "Flutter Lyra Example Release",
"request": "launch",
"type": "dart",
"cwd": "${workspaceFolder:📱 Flutter Lyra Example}",
"program": "lib/main.dart",
"flutterMode": "release",
}
]
}
}