Skip to content

Commit 06eb9c1

Browse files
committed
sensible defaults for vscode workspace settings
1 parent da77670 commit 06eb9c1

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

.vscode/c_cpp_properties.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": ["${workspaceFolder}/**", "/opt/ros/jazzy/include"],
6+
"defines": [],
7+
"compilerPath": "/usr/bin/gcc",
8+
"cStandard": "c11",
9+
"cppStandard": "c++17",
10+
"intelliSenseMode": "clang-x64",
11+
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
12+
}
13+
],
14+
"version": 4
15+
}

.vscode/extensions.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"ms-vscode.cpptools",
4+
"ms-azuretools.vscode-docker",
5+
"donjayamanne.python-extension-pack",
6+
"dotjoshjohnson.xml"
7+
]
8+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"python.autoComplete.extraPaths": [
3+
"/opt/ros/jazzy/lib/python3.12/site-packages"
4+
],
5+
"python.analysis.extraPaths": [
6+
"/opt/ros/jazzy/lib/python3.12/site-packages"
7+
]
8+
}

0 commit comments

Comments
 (0)