-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdart_node.code-workspace
More file actions
61 lines (61 loc) · 1.18 KB
/
dart_node.code-workspace
File metadata and controls
61 lines (61 loc) · 1.18 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
51
52
53
54
55
56
57
58
59
60
61
{
"folders": [
{
"path": "."
}
],
"settings": {
"dart.testInvocationMode": "implementationThenName",
"dart.cliConsole": "terminal",
"dart.debugExternalPackageLibraries": false,
"dart.debugSdkLibraries": false,
"dart.env": {
"DART_NODE_COVERAGE": "1"
},
"testing.automaticallyOpenPeekView": "failureVisible",
"testing.defaultGutterClickAction": "run",
"files.associations": {
"*.jsx": "dart-jsx"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "entity.name.tag.jsx",
"settings": {
"foreground": "#4EC9B0"
}
},
{
"scope": "support.class.component.jsx",
"settings": {
"foreground": "#4EC9B0"
}
},
{
"scope": "entity.other.attribute-name.jsx",
"settings": {
"foreground": "#9CDCFE"
}
},
{
"scope": "punctuation.definition.tag.jsx",
"settings": {
"foreground": "#808080"
}
},
{
"scope": "punctuation.section.embedded.begin.jsx",
"settings": {
"foreground": "#FFD700"
}
},
{
"scope": "punctuation.section.embedded.end.jsx",
"settings": {
"foreground": "#FFD700"
}
}
]
}
}
}