Skip to content

Commit 83b011e

Browse files
committed
Add VS Code extension recommendations for development setup
1 parent 9847708 commit 83b011e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.vscode/extensions.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"recommendations": [
3+
// Python extensions - Code formatting and linting
4+
"ms-python.python",
5+
"ms-python.vscode-pylance",
6+
"ms-python.black-formatter",
7+
"ms-python.autopep8",
8+
"ms-python.pylint",
9+
"ms-python.flake8",
10+
// C++ extensions - Code formatting and linting
11+
"ms-vscode.cpptools",
12+
"ms-vscode.cpptools-extension-pack",
13+
"xaver.clang-format",
14+
"mine.cpplint",
15+
],
16+
"unwantedRecommendations": [
17+
// Avoid conflicts with multiple formatters
18+
"ms-vscode.cpptools-themes"
19+
]
20+
}

0 commit comments

Comments
 (0)