Skip to content

Commit 7322e99

Browse files
committed
Update gitignore
1 parent 665e67e commit 7322e99

File tree

1 file changed

+65
-110
lines changed

1 file changed

+65
-110
lines changed

.gitignore

Lines changed: 65 additions & 110 deletions
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,29 @@
1+
#### Modmail
2+
# Plugins
3+
plugins/*
4+
!plugins/registry.json
5+
!plugins/@local
6+
7+
# Config files
8+
config.json
9+
.env
10+
11+
# Data
12+
temp/
13+
14+
### Python
115
# Byte-compiled / optimized / DLL files
216
__pycache__/
317
*.py[cod]
418
*$py.class
519

6-
# C extensions
7-
*.so
8-
9-
# Distribution / packaging
10-
.Python
11-
build/
12-
develop-eggs/
13-
dist/
14-
downloads/
15-
eggs/
16-
.eggs/
17-
lib/
18-
lib64/
19-
parts/
20-
sdist/
21-
var/
22-
wheels/
23-
pip-wheel-metadata/
24-
share/python-wheels/
25-
*.egg-info/
26-
.installed.cfg
27-
*.egg
28-
MANIFEST
29-
30-
# PyInstaller
31-
# Usually these files are written by a python script from a template
32-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33-
*.manifest
34-
*.spec
35-
3620
# Installer logs
3721
pip-log.txt
3822
pip-delete-this-directory.txt
3923

40-
# Unit test / coverage reports
41-
htmlcov/
42-
.tox/
43-
.nox/
44-
.coverage
45-
.coverage.*
46-
.cache
47-
nosetests.xml
48-
coverage.xml
49-
*.cover
50-
.hypothesis/
51-
.pytest_cache/
52-
53-
# Translations
54-
*.mo
55-
*.pot
56-
57-
# Django stuff:
58-
*.log
59-
local_settings.py
60-
db.sqlite3
61-
62-
# Flask stuff:
63-
instance/
64-
.webassets-cache
65-
66-
# Scrapy stuff:
67-
.scrapy
68-
69-
# Sphinx documentation
70-
docs/_build/
71-
72-
# PyBuilder
73-
target/
74-
75-
# Jupyter Notebook
76-
.ipynb_checkpoints
77-
78-
# IPython
79-
profile_default/
80-
ipython_config.py
81-
8224
# pyenv
8325
.python-version
8426

85-
# celery beat schedule file
86-
celerybeat-schedule
87-
88-
# SageMath parsed files
89-
*.sage.py
90-
9127
# Environments
9228
.env
9329
.venv
@@ -98,43 +34,62 @@ ENV/
9834
env.bak/
9935
venv.bak/
10036

101-
# Spyder project settings
102-
.spyderproject
103-
.spyproject
104-
105-
# Rope project settings
106-
.ropeproject
37+
#### PyCharm
38+
.idea/
10739

108-
# mkdocs documentation
109-
/site
40+
#### VS Code
41+
.vscode/
11042

111-
# mypy
112-
.mypy_cache/
113-
.dmypy.json
114-
dmypy.json
43+
### Windows
44+
# Windows thumbnail cache files
45+
Thumbs.db
46+
Thumbs.db:encryptable
47+
ehthumbs.db
48+
ehthumbs_vista.db
11549

116-
# Pyre type checker
117-
.pyre/
50+
# Dump file
51+
*.stackdump
11852

119-
# PyCharm
120-
.idea/
53+
# Folder config file
54+
[Dd]esktop.ini
12155

122-
# MacOS
123-
.DS_Store
56+
# Recycle Bin used on file shares
57+
$RECYCLE.BIN/
12458

125-
# VS Code
126-
.vscode/
59+
# Windows Installer files
60+
*.cab
61+
*.msi
62+
*.msix
63+
*.msm
64+
*.msp
12765

128-
# Node
129-
package-lock.json
130-
node_modules/
66+
# Windows shortcuts
67+
*.lnk
13168

132-
# Modmail
133-
plugins/*
134-
!plugins/registry.json
135-
!plugins/@local
136-
config.json
137-
temp/
138-
test.py
139-
stack.yml
140-
.github/workflows/build_docker.yml
69+
### macOS
70+
# General
71+
.DS_Store
72+
.AppleDouble
73+
.LSOverride
74+
75+
# Icon must end with two \r
76+
Icon
77+
78+
# Thumbnails
79+
._*
80+
81+
# Files that might appear in the root of a volume
82+
.DocumentRevisions-V100
83+
.fseventsd
84+
.Spotlight-V100
85+
.TemporaryItems
86+
.Trashes
87+
.VolumeIcon.icns
88+
.com.apple.timemachine.donotpresent
89+
90+
# Directories potentially created on remote AFP share
91+
.AppleDB
92+
.AppleDesktop
93+
Network Trash Folder
94+
Temporary Items
95+
.apdisk

0 commit comments

Comments
 (0)