-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathphlex.code-workspace
More file actions
81 lines (81 loc) · 2.64 KB
/
Copy pathphlex.code-workspace
File metadata and controls
81 lines (81 loc) · 2.64 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
{
"folders": [
{
"name": "Phlex",
"path": "."
}
],
"settings": {
"files.associations": {
".yamllint": "yaml",
"*.yml": "yaml",
"*.yaml": "yaml"
},
"files.exclude": {
"**/local/.*/**": true,
"**/local/*/": true
},
"search.exclude": {
"**/local/.*/**": true,
"**/local/*/": true,
"**/build/_deps/**": true,
"**/build/CMakeFiles/**": true,
"**/.venv/**": true,
"**/py_virtual_env/**": true
},
"files.watcherExclude": {
"**/local/.*/**": true,
"**/local/*/": true,
"**/build/_deps/**": true,
"**/build/CMakeFiles/**": true,
"**/.venv/**": true,
"**/py_virtual_env/**": true
},
"cmake.sourceDirectory": "${workspaceFolder}",
"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/**",
"**/.venv/**",
"**/py_virtual_env/**"
],
"python.analysis.ignore": [
"**/local/.*/**",
"**/local/*/",
"**/build/_deps/**",
"**/build/CMakeFiles/**",
"**/.venv/**",
"**/py_virtual_env/**"
],
"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/*",
"https://json.schemastore.org/github-action.json": "./.github/actions/*/action.yaml"
}
}
}