-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathphlex.code-workspace
More file actions
103 lines (103 loc) · 3.26 KB
/
phlex.code-workspace
File metadata and controls
103 lines (103 loc) · 3.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
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
{
"folders": [
{
"name": "Phlex",
"path": "."
}
],
"settings": {
"files.associations": {
"*.yml": "yaml",
"*.yaml": "yaml"
},
"files.exclude": {
"**/local/.*/**": true,
"**/local/*/": true
},
"search.exclude": {
"**/local/.*/**": true,
"**/local/*/": true,
"**/build/_deps/**": true,
"**/build/CMakeFiles/**": true
},
"files.watcherExclude": {
"**/local/.*/**": true,
"**/local/*/": true,
"**/build/_deps/**": true,
"**/build/CMakeFiles/**": true
},
"cmake.sourceDirectory": "${workspaceFolder}",
"cmake.buildDirectory": "${workspaceFolder}/build",
"cmake.useCMakePresets": "always",
"cmake.generator": "Ninja",
"C_Cpp.default.cStandard": "c17",
"C_Cpp.default.cppStandard": "c++23",
"C_Cpp.default.intelliSenseMode": "linux-gcc-x64",
"C_Cpp.default.compileCommands": "${workspaceFolder}/build/compile_commands.json",
"C_Cpp.exclusionPolicy": "checkFolders",
"C_Cpp.files.exclude": {
"**/local/.*/**": true,
"**/local/*/": true,
"**/build/_deps/**": true,
"**/build/CMakeFiles/**": true
},
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.diagnosticMode": "workspace",
"python.analysis.exclude": [
"**/local/.*/**",
"**/local/*/",
"**/build/_deps/**",
"**/build/CMakeFiles/**"
],
"python.analysis.ignore": [
"**/local/.*/**",
"**/local/*/",
"**/build/_deps/**",
"**/build/CMakeFiles/**"
],
"flake8.enabled": false,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit",
"source.fixAll.ruff": "explicit"
}
},
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": "./.github/workflows/*"
}
},
"extensions": {
"recommendations": [
"ms-vscode.cmake-tools",
"ms-vscode.cpptools",
"ms-vscode.cpptools-extension-pack",
"twxs.cmake",
"ms-vscode.vscode-json",
"redhat.vscode-yaml",
"charliermarsh.ruff",
"github.vscode-actions",
"github.copilot",
"github.copilot-chat",
"github.vscode-pull-request-github",
"ms-vscode.hexeditor"
],
"unwantedRecommendations": [
"reditorsupport.r",
"ms-vscode.r",
"ikuyadeu.r",
"ms-vscode.r-debugger",
"vscjava.vscode-java-pack",
"redhat.java",
"vscjava.vscode-java-debug",
"vscjava.vscode-java-test",
"vscjava.vscode-maven",
"vscjava.vscode-gradle",
"ms-python.python",
"ms-toolsai.jupyter",
"ms-python.flake8"
]
}
}