refactor: ignore few directories

This commit is contained in:
Jose Quintana
2020-12-11 15:51:16 +01:00
parent acef3996d8
commit 7581c99a9f
5 changed files with 4 additions and 56 deletions

View File

@@ -5,8 +5,10 @@
**/*.tar
**/*.zip
**/.DS_Store
**/*.env
.gitignore
*docker-compose*
Makefile
target
**/*.env
.vscode
release

1
.gitignore vendored
View File

@@ -14,5 +14,6 @@
**/.DS_Store
**/*.env
release
.vscode
!sample.env

View File

@@ -1,6 +0,0 @@
{
"recommendations": [
"matklad.rust-analyzer",
"vadimcn.vscode-lldb"
]
}

43
.vscode/launch.json vendored
View File

@@ -1,43 +0,0 @@
{
// Use IntelliSense para saber los atributos posibles.
// Mantenga el puntero para ver las descripciones de los existentes atributos
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'rust-learning'",
"cargo": {
"args": [
"build",
"--bin=rust-learning",
"--package=rust-learning"
],
"filter": {
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust-learning'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust-learning",
"--package=rust-learning"
],
"filter": {
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

View File

@@ -1,6 +0,0 @@
{
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.insertFinalNewline": true
}