Skip to content

Commit

Permalink
Configure recommended extensions for VS Code (#297)
Browse files Browse the repository at this point in the history
- Include list of extension recommendations for linting/formatting tools
  • Loading branch information
taesungh authored Jan 20, 2024
1 parent 2403b10 commit 2d6da4a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"ms-python.black-formatter",
"dbaeumer.vscode-eslint",
"ms-python.flake8",
"ms-python.isort",
"ms-python.mypy-type-checker",
"esbenp.prettier-vscode",
"ms-python.python"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}

0 comments on commit 2d6da4a

Please sign in to comment.