Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.

Commit

Permalink
update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
RileyMShea committed Feb 12, 2021
1 parent 9d1bcf3 commit 4e3575d
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@ cython_debug/
joblib_cache/
.joblib_cache/

.vscode/
.vscode/settings.json
.vscode/*
!.vscode/settings.json
!.vscode/launch.json

*.parquet
*.pkl
Expand Down
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
}
]
}
49 changes: 49 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"python.testing.pytestEnabled": true,
"python.linting.mypyEnabled": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/*.json.zip": true,
"coverage.xml": true,
"**/.joblib_cache/*": true,
"**/dist/*": true,
"**/.mypy_cache/*": true,
"**/__pycache__/*": true,
"**/dask-worker-space": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.joblib_cache": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.virtual_documents": true,
"**/.ipynb_checkpoints": true,
".coverage": true,
"**/__pycache__": true,
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/*.json.zip": true,
"coverage.xml": true,
"**/.joblib_cache": true,
"**/dist/*": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.virtual_documents": true,
"**/.ipynb_checkpoints": true,
".coverage": true,
"**/__pycache__": true,
"**/dask-worker-space": true
}
}

0 comments on commit 4e3575d

Please sign in to comment.