This repository was archived by the owner on Mar 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.code-workspace
More file actions
79 lines (76 loc) · 2.29 KB
/
project.code-workspace
File metadata and controls
79 lines (76 loc) · 2.29 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
{
"folders": [
{
"path": ".",
},
],
"settings": {
"workbench.colorTheme": "Theme",
"editor.semanticHighlighting.enabled": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.guides.indentation": true,
"editor.guides.highlightActiveIndentation": true,
"editor.renderWhitespace": "selection",
"editor.cursorSmoothCaretAnimation": "on",
"editor.smoothScrolling": true,
"editor.fontSize": 16,
"editor.lineHeight": 22,
"editor.tabSize": 4,
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
},
"search.exclude": {
"**/build": true,
"**/*.aux": true,
"**/*.log": true,
"**/*.out": true,
"**/*.synctex.gz": true,
"**/*.toc": true,
},
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"C_Cpp.default.includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/src",
"${workspaceFolder}/**",
],
"C_Cpp.files.exclude": {
"**/build": true,
"**/.vscode": true,
},
"files.associations": {
"*.tpp": "cpp",
},
// Workspace-level fallback to keep ENG1014 policy active even if user-level settings override project settings.json.
// Disable prohibition: remove these environment entries.
"terminal.integrated.env.windows": {
"MONASH_PYTHON_POLICY_ENFORCE": "1",
"MONASH_PYTHON_POLICY_FILE": "${workspaceFolder}/docs/environment/eng1014.yaml",
"PYTHONPATH": "${workspaceFolder}/tools/python_policy",
},
// FIT1045 default posture: AI disabled at workspace level too.
// Disable prohibition: run scripts/toggle-vscode-ai.ps1 -Mode enable.
"github.copilot.enable": {
"*": false,
},
"github.copilot.editor.enableAutoCompletions": false,
"github.copilot.chat.enable": false,
"chat.commandCenter.enabled": false,
},
"extensions": {
"recommendations": [
"ms-vscode.cpptools-extension-pack",
"ms-dotnettools.csdevkit",
"ms-dotnettools.vscodeintellicode-csharp",
"ms-vscode-remote.remote-wsl",
"james-yu.latex-workshop",
],
},
}