Skip to content

Commit 2088de8

Browse files
committed
Add developer productivity configs
VS Code configurations: - Workspace settings - Recommended extensions
1 parent 6a45672 commit 2088de8

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.vscode/extensions.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"recommendations": [
3+
"charliermarsh.ruff",
4+
"github.vscode-github-actions",
5+
"github.vscode-pull-request-github",
6+
"ms-python.debugpy",
7+
"ms-python.python",
8+
"ms-python.vscode-pylance",
9+
"streetsidesoftware.code-spell-checker"
10+
]
11+
}

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"python.testing.unittestEnabled": false,
3+
"python.testing.pytestEnabled": true,
4+
"python.testing.pytestArgs": ["-s", "-m", "not slow and not manual"],
5+
"cSpell.words": ["webexpythonsdk"]
6+
}

0 commit comments

Comments
 (0)