-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsls-nextjs.code-workspace
62 lines (62 loc) · 1.63 KB
/
sls-nextjs.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
{
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"search.exclude": {
"**/coverage": true,
"**/.next": true,
"**/node_modules": true,
"**/.serverless": true,
"**/build": true,
"**/bundles": true,
"**/dist": true,
".yarn": true,
"yarn.lock": true
},
"[dotenv][ignore][properties][shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[html][javascript][json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.tsdk": "node_modules/typescript/lib",
"jest.autoRun": "off",
"jest.disabledWorkspaceFolders": ["✨ root"],
"jest.jestCommandLine": "yarn jest",
"jest.showTerminalOnLaunch": false,
"jest.showCoverageOnLoad": true,
"jest.coverageFormatter": "DefaultFormatter",
"cSpell.words": ["esbuild", "nextjs"],
"files.eol": "\n",
"debug.internalConsoleOptions": "neverOpen"
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"editorconfig.editorconfig",
"foxundermoon.shell-format",
"orta.vscode-jest",
"streetsidesoftware.code-spell-checker"
]
},
"folders": [
{
"path": ".",
"name": "✨ root"
},
{
"path": "example-app",
"name": "🚀 example-app/ [app]"
},
{
"path": "packages/deployment",
"name": "🔧 packages/deployment/ [package]"
}
]
}