-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfufuni.code-workspace
More file actions
83 lines (83 loc) · 2.4 KB
/
fufuni.code-workspace
File metadata and controls
83 lines (83 loc) · 2.4 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
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
{
"folders": [
{
"name": "Root",
"path": "./"
},
{
"name": "Client App",
"path": "./apps/client",
},
{
"name": "Merchant",
"path": "./apps/merchant"
},
{
"name": "MCP",
"path": "./apps/mcp"
},
{
"name": "Sensitive datas",
"path": "./_sensitive_datas"
},
{
"name": "GitHub Actions",
"path": "./.github"
},
{
"name": "E2E Tests",
"path": "./e2e"
}
],
"settings": {
"github.copilot.selectedCompletionModel": "raptor-mini",
"github.copilot.chat.localeOverride": "en",
"editor.maxTokenizationLineLength":1000000,
"git.openRepositoryInParentFolders": "always",
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"args": [
"-c",
"echo WORKSPACE_ROOT=${workspaceFolder:Root};if [ -f ${workspaceFolder:Root}/.env ]; then set -a && source ${workspaceFolder:Root}/.env && export WORKSPACE_ROOT=${workspaceFolder:Root}/ && set +a && echo '.env loaded successfully from ${workspaceFolder:Root}/.env'; else echo '.env file not found'; fi && exec bash -i"
]
}
},
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "zsh",
"args": [
"-c",
"echo WORKSPACE_ROOT=${workspaceFolder:Root}; if [ -f ${workspaceFolder:Root}/.env ]; then set -a && source ${workspaceFolder:Root}/.env && export WORKSPACE_ROOT=${workspaceFolder:Root}/ && set +a && echo '.env loaded successfully from ${workspaceFolder:Root}/.env'; else echo '.env file not found'; fi && exec zsh -i"
]
}
},
"npm.packageManager": "yarn",
"i18n-ally.keystyle": "flat",
"i18n-ally.localesPaths": [
"./src/locales/base"
],
"i18n-ally.sourceLanguage": "en-US",
"i18n-ally.displayLanguage": "fr-FR",
"i18n-ally.languageTagSystem": "bcp47",
"chat.tools.terminal.autoApprove": {
"npm run type-check": true,
"mkdir": true
},
"i18n-ally-next.localesPaths": [
"apps/client/src/locales"
]
},
"extensions": {
"recommendations": [
"ms-vscode.vscode-typescript-next",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode",
"ms-vscode.vscode-json",
"bierner.markdown-mermaid",
"lokalise.i18n-ally"
]
}
}