Skip to content

Commit

Permalink
add secret material to gitignore (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb authored May 25, 2021
1 parent 7e920be commit 1390a6b
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ __pycache__/
*$py.class

# C extensions
*.a
*.dll
*.dylib
*.exe
*.o
*.so

# Distribution / packaging
*.7z
.Python
env/
build/
Expand All @@ -19,8 +25,13 @@ lib/
lib64/
parts/
sdist/
*.tar
*.tar.gz
*.tgz
var/
wheels/
*.whl
*.zip
*.egg-info/
.installed.cfg
*.egg
Expand Down Expand Up @@ -69,6 +80,7 @@ target/

# Jupyter Notebook
.ipynb_checkpoints
Untitled*.ipynb

# pyenv
.python-version
Expand Down Expand Up @@ -101,4 +113,28 @@ ENV/
.mypy_cache/

.pytest-kind/
.kube/
.kube/

# data files
*.csv
*.db
*.json
*.ndjson
*.npy
*.parquet
*.pkl
*.pq
*.sqlite
*.tsv
*.xls
*.xlsm
*.xlsx

# credentials and key material
credentials
credentials.csv
*.env
*.pem
*.pub
*.rdp
*_rsa

0 comments on commit 1390a6b

Please sign in to comment.