-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscripture-burrito-store-js.code-workspace
More file actions
44 lines (44 loc) · 1.07 KB
/
scripture-burrito-store-js.code-workspace
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"folders": [{
"path": "."
}],
"settings": {
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true
},
"eslint.lintTask.options": "-c .eslintrc.json",
"eslint.options": {
"configFile": ".eslintrc.json"
},
"eslint.alwaysShowStatus": true,
"eslint.format.enable": true
},
"launch": {
"configurations": [{
"type": "node",
"request": "launch",
"name": "Run Express",
"skipFiles": [],
"program": "${workspaceFolder}/express/bin/www"
},
{
"type": "node",
"request": "launch",
"name": "Setup Burrito Store for Express",
"skipFiles": [],
"program": "${workspaceFolder}/build/setup_burrito_store.js",
"args": ["${workspaceFolder}/express/some_burritos"]
}
]
},
"extensions": {
"recommendations": [
"eg2.vscode-npm-script",
"dbaeumer.vscode-eslint",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"maty.vscode-mocha-sidebar",
]
},
}