forked from swarmion/swarmion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swarmion.code-workspace
112 lines (112 loc) · 2.91 KB
/
swarmion.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"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,
"**/.docusaurus": true,
"**/build": true,
"**/bundles": true,
"**/dist": true,
"pnpm-lock.yaml": true
},
"[dotenv][ignore][properties][shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[html][javascript][json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown][mdx]": {
"editor.wordWrap": "on"
},
"typescript.tsdk": "node_modules/typescript/lib",
"vitest.commandLine": "pnpm vitest",
"vitest.disabledWorkspaceFolders": ["swarmion root"],
"cSpell.words": [
"clsx",
"esbuild",
"horiz",
"microservices",
"middlewares",
"swarmion",
"ulid"
],
"files.exclude": {}
},
"extensions": {
"recommendations": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"foxundermoon.shell-format",
"ZixuanChen.vitest-explorer",
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-french",
"stylelint.vscode-stylelint",
"styled-components.vscode-styled-components",
"SebastianBille.iam-legend"
]
},
"folders": [
{
"path": "backend/orchestrator",
"name": "orchestrator backend [service]"
},
{
"path": "contracts/orchestrator-contracts",
"name": "orchestrator contracts [library]"
},
{
"path": "packages/eslint-plugin",
"name": "eslint plugin [library]"
},
{
"path": "packages/nx-plugin",
"name": "nx plugin [library]"
},
{
"path": "packages/serverless-configuration",
"name": "serverless configuration [library]"
},
{
"path": "packages/serverless-contracts",
"name": "serverless contracts [library]"
},
{
"path": "packages/serverless-contracts-plugin",
"name": "serverless contracts plugin [library]"
},
{
"path": "packages/serverless-helpers",
"name": "serverless helpers [library]"
},
{
"path": "user-docs/documentation",
"name": "documentation [library]"
},
{
"path": "user-docs/cloudfront",
"name": "documentation cloudfront [service]"
},
{
"path": "packages/create-swarmion-app",
"name": "create swarmion app [library]"
},
{
"path": "packages/serverless-cdk-plugin",
"name": "serverless cdk [library]"
},
{
"path": ".",
"name": "swarmion root"
}
]
}