Remove .vscode settings and add to gitignore (#1929)

.vscode's settings.json can get cluttered with installation-specific
settings, which can lead to confusing pull requests. Instead, let's use
the approach outlined here:

https://stackoverflow.com/a/48387809

This provides a set of defaults that people can use, which we can
extend over time.
This commit is contained in:
William Lachance 2021-03-30 12:25:05 -04:00 коммит произвёл GitHub
Родитель ba797386f9
Коммит 9f21097a49
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 7 добавлений и 0 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -4,6 +4,7 @@
*.egg-info/
.DS_Store
.mypy_cache/
.vscode/
venv/
target/

Просмотреть файл

Просмотреть файл

@ -47,6 +47,12 @@ Optionally, download java dependencies
mvn dependency:copy-dependencies
```
Finally, if you are using Visual Studio Code, you may also wish to use our recommended defaults:
```bash
cp .vscode/settings.json.default .vscode/settings.json
```
And you should now be set up to start working in the repo! The easiest way to do this is for many tasks is to use `bqetl`, which is described below.