Skip to content

Commit 8dd3700

Browse files
committed
Update .gitignore
1 parent 57d24c5 commit 8dd3700

File tree

1 file changed

+102
-120
lines changed

1 file changed

+102
-120
lines changed

.gitignore

Lines changed: 102 additions & 120 deletions
Original file line numberDiff line numberDiff line change
@@ -1,120 +1,5 @@
1-
_Store
2-
.AppleDouble
3-
.LSOverride
4-
5-
# Icon must end with two \r
6-
Icon
7-
8-
9-
# Thumbnails
10-
._*
11-
12-
# Files that might appear in the root of a volume
13-
.DocumentRevisions-V100
14-
.fseventsd
15-
.Spotlight-V100
16-
.TemporaryItems
17-
.Trashes
18-
.VolumeIcon.icns
19-
.com.apple.timemachine.donotpresent
20-
21-
# Directories potentially created on remote AFP share
22-
.AppleDB
23-
.AppleDesktop
24-
Network Trash Folder
25-
Temporary Items
26-
.apdisk
27-
28-
*~
29-
30-
# temporary files which can be created if a process still has a handle open of a deleted file
31-
.fuse_hidden*
32-
33-
# KDE directory preferences
34-
.directory
35-
36-
.DS_Store
37-
38-
# Linux trash folder which might appear on any partition or disk
39-
.Trash-*
40-
41-
# .nfs files are created when an open file is removed but is still being accessed
42-
.nfs*
43-
44-
# Windows thumbnail cache files
45-
Thumbs.db
46-
ehthumbs.db
47-
ehthumbs_vista.db
48-
49-
# Dump file
50-
*.stackdump
51-
52-
# Folder config file
53-
Desktop.ini
54-
55-
# Recycle Bin used on file shares
56-
$RECYCLE.BIN/
57-
58-
# Windows Installer files
59-
*.cab
60-
*.msi
61-
*.msm
62-
*.msp
63-
64-
# Windows shortcuts
65-
*.lnk
66-
67-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
68-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
69-
70-
# User-specific stuff:
71-
.idea/**/workspace.xml
72-
.idea/**/tasks.xml
73-
.idea/dictionaries
74-
75-
# Sensitive or high-churn files:
76-
.idea/**/dataSources/
77-
.idea/**/dataSources.ids
78-
.idea/**/dataSources.xml
79-
.idea/**/dataSources.local.xml
80-
.idea/**/sqlDataSources.xml
81-
.idea/**/dynamic.xml
82-
.idea/**/uiDesigner.xml
83-
84-
# Gradle:
85-
.idea/**/gradle.xml
86-
.idea/**/libraries
87-
88-
# CMake
89-
cmake-build-debug/
90-
91-
# Mongo Explorer plugin:
92-
.idea/**/mongoSettings.xml
93-
94-
## File-based project format:
95-
*.iws
96-
97-
## Plugin-specific files:
98-
99-
# IntelliJ
100-
out/
101-
102-
# mpeltonen/sbt-idea plugin
103-
.idea_modules/
104-
105-
# JIRA plugin
106-
atlassian-ide-plugin.xml
107-
108-
# Cursive Clojure plugin
109-
.idea/replstate.xml
110-
111-
# Crashlytics plugin (for Android Studio and IntelliJ)
112-
com_crashlytics_export_strings.xml
113-
crashlytics.properties
114-
crashlytics-build.properties
115-
fabric.properties
116-
117-
# Byte-compiled / optimized / DLL files
1+
# https://github.com/github/gitignore/blob/master/Python.gitignore
2+
Byte-compiled / optimized / DLL files
1183
__pycache__/
1194
*.py[cod]
1205
*$py.class
@@ -136,9 +21,12 @@ parts/
13621
sdist/
13722
var/
13823
wheels/
24+
pip-wheel-metadata/
25+
share/python-wheels/
13926
*.egg-info/
14027
.installed.cfg
14128
*.egg
29+
MANIFEST
14230

14331
# PyInstaller
14432
# Usually these files are written by a python script from a template
@@ -153,13 +41,15 @@ pip-delete-this-directory.txt
15341
# Unit test / coverage reports
15442
htmlcov/
15543
.tox/
44+
.nox/
15645
.coverage
15746
.coverage.*
15847
.cache
15948
nosetests.xml
16049
coverage.xml
16150
*.cover
16251
.hypothesis/
52+
.pytest_cache/
16353

16454
# Translations
16555
*.mo
@@ -168,6 +58,7 @@ coverage.xml
16858
# Django stuff:
16959
*.log
17060
local_settings.py
61+
db.sqlite3
17162

17263
# Flask stuff:
17364
instance/
@@ -185,6 +76,10 @@ target/
18576
# Jupyter Notebook
18677
.ipynb_checkpoints
18778

79+
# IPython
80+
profile_default/
81+
ipython_config.py
82+
18883
# pyenv
18984
.python-version
19085

@@ -200,6 +95,8 @@ celerybeat-schedule
20095
env/
20196
venv/
20297
ENV/
98+
env.bak/
99+
venv.bak/
203100

204101
# Spyder project settings
205102
.spyderproject
@@ -213,7 +110,92 @@ ENV/
213110

214111
# mypy
215112
.mypy_cache/
113+
.dmypy.json
114+
dmypy.json
115+
116+
# Pyre type checker
117+
.pyre/
118+
119+
# https://github.com/github/gitignore/blob/master/Processing.gitignore
120+
.DS_Store
121+
applet
122+
application.linux-arm64
123+
application.linux-armv6hf
124+
application.linux32
125+
application.linux64
126+
application.windows32
127+
application.windows64
128+
application.macosx
129+
130+
# https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
131+
# General
132+
.DS_Store
133+
.AppleDouble
134+
.LSOverride
135+
136+
# Icon must end with two \r
137+
Icon
138+
139+
140+
# Thumbnails
141+
._*
142+
143+
# Files that might appear in the root of a volume
144+
.DocumentRevisions-V100
145+
.fseventsd
146+
.Spotlight-V100
147+
.TemporaryItems
148+
.Trashes
149+
.VolumeIcon.icns
150+
.com.apple.timemachine.donotpresent
151+
152+
# Directories potentially created on remote AFP share
153+
.AppleDB
154+
.AppleDesktop
155+
Network Trash Folder
156+
Temporary Items
157+
.apdisk
158+
159+
# https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
160+
# Windows thumbnail cache files
161+
Thumbs.db
162+
ehthumbs.db
163+
ehthumbs_vista.db
164+
165+
# Dump file
166+
*.stackdump
167+
168+
# Folder config file
169+
[Dd]esktop.ini
216170

217-
#Sopel Logs
218-
logs/
219-
sopel.pid
171+
# Recycle Bin used on file shares
172+
$RECYCLE.BIN/
173+
174+
# Windows Installer files
175+
*.cab
176+
*.msi
177+
*.msix
178+
*.msm
179+
*.msp
180+
181+
# Windows shortcuts
182+
*.lnk
183+
184+
# https://github.com/github/gitignore/blob/master/Global/Vim.gitignore
185+
# Swap
186+
[._]*.s[a-v][a-z]
187+
[._]*.sw[a-p]
188+
[._]s[a-rt-v][a-z]
189+
[._]ss[a-gi-z]
190+
[._]sw[a-p]
191+
192+
# Session
193+
Session.vim
194+
195+
# Temporary
196+
.netrwhist
197+
*~
198+
# Auto-generated tag files
199+
tags
200+
# Persistent undo
201+
[._]*.un~

0 commit comments

Comments
 (0)