From 1390a6b8ebe3b3f1212dcb00850cc94953faacc3 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 25 May 2021 04:06:38 -0500 Subject: [PATCH] add secret material to gitignore (#339) --- .gitignore | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c30a55332..f6da992d2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,9 +4,15 @@ __pycache__/ *$py.class # C extensions +*.a +*.dll +*.dylib +*.exe +*.o *.so # Distribution / packaging +*.7z .Python env/ build/ @@ -19,8 +25,13 @@ lib/ lib64/ parts/ sdist/ +*.tar +*.tar.gz +*.tgz var/ wheels/ +*.whl +*.zip *.egg-info/ .installed.cfg *.egg @@ -69,6 +80,7 @@ target/ # Jupyter Notebook .ipynb_checkpoints +Untitled*.ipynb # pyenv .python-version @@ -101,4 +113,28 @@ ENV/ .mypy_cache/ .pytest-kind/ -.kube/ \ No newline at end of file +.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