Add VSCode editor configuration to the repository

This commit is contained in:
Maxime Quandalle 2016-07-20 15:52:36 +02:00
parent 3ed00f3db7
commit 8d555707f2
No known key found for this signature in database
GPG key ID: 428641C03D29CA10
2 changed files with 12 additions and 1 deletions

1
.meteor/.gitignore vendored
View file

@ -1,2 +1 @@
dev_bundle
local

12
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,12 @@
{
"editor.tabSize": 2,
"editor.rulers": [80],
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": true,
".meteor/local": true
}
}