Skip to content

Commit

Permalink
add VSCode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mizzao committed Nov 10, 2019
1 parent 8e7e63b commit 7965368
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.idea
.meteor
.npm
node_modules
packages/*
smart.lock
versions.json

docs/client/data

Expand Down
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// 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": [
"esbenp.prettier-vscode"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.formatOnSave": true,
"files.exclude": {
"**/.npm": true, // this excludes all folders from the explore tree
"**/node_modules": true,
"packages": true // this excludes the folder only from the root
}
}

0 comments on commit 7965368

Please sign in to comment.