-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
71 lines (54 loc) · 838 Bytes
/
.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
65
66
67
68
69
70
71
# A personal .gitignore file to apply globally (across projects)
# To prevent pollution of project-based gitignores
# See .gitconfig for the config line that sets this file as the global gitignore
### General ###
###############
# Windows OS
Thumbs.db
[Dd]esktop.ini
$RECYCLE.BIN/
*.lnk
# Mac OS
.DS_STORE
.AppleDouble
.fseventsd
.Spotlight-V100
.Trashes
# Secrets
.env
# VS Code config
.vscode/*
*.code-workspace
# Vim
*.swp
*.swo
### Python ###
##############
# Compiled
__pycache__/
*.pyc
# Distribution / Packaging
build/
dist/
eggs/
.eggs/
*.egg-info/
wheels/
# Linters / Formatters
.ruff_cache/
# Unit test / Coverage reports
.coverage
.coverage.*
.pytest_cache/
# Sphinx docs
docs/_build/
# mkdocs documentation
/site
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# Environments
.venv
venv/
venvs/