-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNexusCore.code-workspace
More file actions
75 lines (75 loc) · 2.26 KB
/
Copy pathNexusCore.code-workspace
File metadata and controls
75 lines (75 loc) · 2.26 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
{
"folders": [
{
"path": "."
}
],
"settings": {
// --- 言語設定(日本語化) ---
"locale": "ja",
// --- Python / WSL ---
"python.defaultInterpreterPath": "${workspaceFolder}/venv/bin/python",
"python.terminal.activateEnvironment": true,
"python.venvPath": "${workspaceFolder}",
"python.venvFolders": [
"${workspaceFolder}"
],
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.defaultProfile.windows": "Ubuntu",
"terminal.integrated.profiles.windows": {
"Ubuntu": {
"path": "wsl.exe",
"args": [
"-d",
"Ubuntu"
],
"icon": "terminal-ubuntu"
},
"WSL": {
"path": "wsl.exe",
"args": [
"-d",
"Ubuntu"
],
"icon": "terminal-ubuntu"
}
},
"terminal.integrated.cwd": "${workspaceFolder}",
// --- Testing ---
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"tests"
],
// --- Git / Source Control ---
"git.autofetch": true,
"git.confirmSync": false,
// --- Editor ---
"editor.formatOnSave": true,
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// --- NexusCore 専用無視フォルダ ---
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
".vscode-server": true,
"exports": true,
"patch_history": false,
"logs": false
},
// --- Jupyter ---
"jupyter.askForKernelRestart": false,
"jupyter.jupyterServerType": "local"
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"visualstudioexptteam.vscodeintellicode",
"tamasfe.even-better-toml",
"dbaeumer.vscode-eslint",
"ms-ceintl.vscode-language-pack-ja"
]
}
}