-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathla-clipasa.code-workspace.example
More file actions
54 lines (54 loc) · 1.22 KB
/
la-clipasa.code-workspace.example
File metadata and controls
54 lines (54 loc) · 1.22 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
{
"folders": [
{
"path": "."
},
{
"path": "frontend"
}
],
"settings": {
// see https://github.com/yokoe/vscode-postfix-go/blob/master/src/templates/customTemplate.ts#L5
"postfixGo.customTemplates": [
{
"name": "my_switch",
"body": "switch ${1:{{expr}}} {\ncase ${2:condition}: \n${0}\n}",
"description": "A custom switch",
"when": [
"identifier"
]
},
],
"cssVariables.lookupFiles": [
"**/*.css",
"**/*.scss",
"**/*.sass",
"**/*.less",
"node_modules/@mantine/core/styles.css",
"frontend/node_modules/@mantine/core/styles.css"
],
"cssVariables.languages": [
"astro",
"svelte",
"vue",
"vue-html",
"vue-postcss",
"scss",
"postcss",
"less",
"css",
"html",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"source.css.styled"
],
"yaml.schemas": {
"https://raw.githubusercontent.com/docker/cli/master/cli/compose/schema/data/config_schema_v3.8.json": "*compose*.yml",
},
"yaml.customTags": [
"tag:yaml.org,2002:merge", // required for broken yaml extension
],
}
}