-
Notifications
You must be signed in to change notification settings - Fork 30
/
dojo-serverless.code-workspace
61 lines (61 loc) · 1.71 KB
/
dojo-serverless.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
{
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"stylelint.validate": ["typescript", "typescriptreact"],
"stylelint.customSyntax": "@stylelint/postcss-css-in-js",
"search.exclude": {
"**/coverage": 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": ["keiko-serverless root"],
"jest.jestCommandLine": "yarn jest",
"jest.showCoverageOnLoad": true,
"jest.coverageFormatter": "DefaultFormatter",
"cSpell.words": ["keiko"]
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"orta.vscode-jest",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-french",
"stylelint.vscode-stylelint",
"styled-components.vscode-styled-components"
]
},
"folders": [
{
"path": ".",
"name": "🌍 keiko-serverless root"
},
{
"path": "packages/backend",
"name": "📡 backend [service]"
},
{
"path": "packages/frontend",
"name": "🏞 frontend app [site]"
}
]
}