Skip to content

Commit

Permalink
Add vscode extension recommendations
Browse files Browse the repository at this point in the history
It's the most common editor for core team members and probably
contributors as well, so it's nice to make it easier for those
to get their environment set up with the most important extensions.
  • Loading branch information
ThiefMaster committed Apr 11, 2022
1 parent 4f8301a commit 67f021a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -28,7 +28,8 @@ node_modules
# IDE files
.idea/
*.sublime-*
.vscode/
.vscode/*
!.vscode/extensions.json

# testing
.coverage
Expand Down
21 changes: 21 additions & 0 deletions .vscode/extensions.json
@@ -0,0 +1,21 @@
{
"recommendations": [
// linters
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
// python
"ms-python.python",
"ms-python.vscode-pylance",
// other file formwards we use
"redhat.vscode-yaml",
"samuelcolvin.jinjahtml",
// misc
"ms-vscode.references-view",
"jakearl.search-editor-apply-changes",
],
"unwantedRecommendations": [
"ms-azuretools.vscode-docker",
"ms-edgedevtools.vscode-edge-devtools",
]
}

0 comments on commit 67f021a

Please sign in to comment.