-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (33 loc) · 735 Bytes
/
.gitignore
File metadata and controls
44 lines (33 loc) · 735 Bytes
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
# Safe files - used for extra files that are temporarily invisible to versioning
**/safe_*
**/safe/*
# Patch files - new / improved versions that will be applied after rebase origin/master
**/patch_*
# Similar to patch or safe, but a newer version
**/new_*
# Backups
*_back*
# Ignore Jupyter and Pycharms metadata
**/.ipynb_checkpoints/*
**/.idea/*
**/__pycache__/*
**/.cache/*
**/.vscode/*
# Ignore Python extras
**/.coverage
**/.python-version
**/htmlcov/*
**/dist/*
**/*.egg-info/*
# Ignore Node.js extras
**/node_modules/*
**/package-lock.json
# Misc folders for libraries ...
**/vendor/*
**/lib/*
static/*
assets/*
**/experimental/*
**/logs/*
# Keep a separate <repo-name>-extra folder or put it here in root
# extra/*