-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkanban.code-workspace
93 lines (93 loc) · 2.01 KB
/
kanban.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
91
92
93
{
"folders": [
{
"name": "kanban",
"path": "."
}
],
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"fivethree.vscode-svelte-snippets",
"svelte.svelte-vscode",
"csstools.postcss",
"esbenp.prettier-vscode",
"pflannery.vscode-versionlens",
"yoavbls.pretty-ts-errors",
"ms-vsliveshare.vsliveshare"
]
},
"settings": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"svelte.plugin.svelte.defaultScriptLanguage": "ts",
"svelte.enable-ts-plugin": true,
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"tailwindCSS.includeLanguages": {
"plaintext": "html",
"svelte": "html",
"html": "html",
"javascript": "javascript",
"css": "postcss",
"postcss": "postcss"
},
"eslint.lintTask.enable": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"files.associations": {
"*.css": "postcss"
},
"tailwindCSS.emmetCompletions": true,
"git.ignoreLimitWarning": true,
"versionlens.suggestions.showOnStartup": true,
"versionlens.suggestions.showPrereleasesOnStartup": true,
"simpleBrowser.opener.enabled": true,
"simpleBrowser.opener.enabled": true
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Run dev",
"request": "launch",
"type": "node-terminal",
"command": "npm run dev",
"cwd": "${workspaceRoot}${pathSeparator}"
}
],
"compounds": []
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Kanban",
"type": "shell",
"command": "echo 'Kanban';npm i;npm run lint;npm run check",
"options": {
"cwd": "${workspaceRoot}${pathSeparator}"
},
"presentation": {
"reveal": "always",
"panel": "shared"
},
"runOptions": {
"runOn": "folderOpen"
},
"group": "none"
}
]
}
}