Skip to content

Commit 87404ad

Browse files
committed
feat: Add Pylint and Mypy linters to default ROS 2 container configuration
1 parent 6ae96a8 commit 87404ad

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

templates/ros2/.devcontainer/devcontainer.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"vscode": {
1111
"extensions": [
1212
"ms-iot.vscode-ros",
13+
"ms-python.mypy-type-checker",
14+
"ms-python.pylint",
1315
"ms-python.python",
1416
"ms-vscode.cmake-tools",
1517
"ms-vscode.cpptools"

templates/ros2/.vscode/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"pylint.args": [
3+
],
4+
"mypy-type-checker.args": [
5+
"--strict"
6+
]
7+
}

0 commit comments

Comments
 (0)