-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.gitignore
64 lines (54 loc) · 1.09 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# REPO SPECIFIC
*checkpoint*
*xlsx*
# Stock Python things
/venv
*.egg-info
/.eggs
__pycache__
*.py[cod]
*$py.class
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# C extensions
*.so
# Tools: MyPy, flake8, coverage, etc.
/.*_cache
/.coverage
# IDE files never belong in a repo. Not unless the repo is tied to an IDE
# (generally a bad idea). It's also diff noise.
.idea
.vscode
# stdlib cProfile dumps
*.pstats
# Pickle files should never be committed.
# They may break when library and Python versions change.
*.pickle
# We really don't care about Notebook checkpoints. Use git.
.ipynb_checkpoints
# Ctags
# Would do /tags, but am going to assume people will accidentally generate some
# in subdirs. Would rather not have them added by accident because nobody
# checks git diff --cached before committing, rather than pointing them out
# when they won't look.
# -- Alex
tags
# NEVER TO BE COMMITTED TO REPO. May contain secrets, like embedded
# username:password@ in DATABASE_URL.
/.env