1+ # ## Python template
12# Byte-compiled / optimized / DLL files
23__pycache__ /
34* .py [cod ]
@@ -8,7 +9,6 @@ __pycache__/
89
910# Distribution / packaging
1011.Python
11- env /
1212build /
1313develop-eggs /
1414dist /
2020parts /
2121sdist /
2222var /
23+ wheels /
2324* .egg-info /
2425.installed.cfg
2526* .egg
@@ -42,48 +43,237 @@ htmlcov/
4243.cache
4344nosetests.xml
4445coverage.xml
45- * , cover
46+ * . cover
4647.hypothesis /
4748
4849# Translations
4950* .mo
5051* .pot
5152
5253# Django stuff:
53- * .log
54- local_settings.py
55-
56- # Flask stuff:
57- instance /
58- .webassets-cache
59-
60- # Scrapy stuff:
61- .scrapy
54+ staticfiles /
6255
6356# Sphinx documentation
6457docs /_build /
6558
6659# PyBuilder
6760target /
6861
69- # IPython Notebook
70- .ipynb_checkpoints
71-
7262# pyenv
7363.python-version
7464
7565# celery beat schedule file
7666celerybeat-schedule
7767
78- # dotenv
68+ # Environments
69+ .envrc
7970.env
80-
81- # virtualenv
71+ .venv
72+ env /
8273venv /
8374ENV /
8475
85- # Spyder project settings
86- .spyderproject
87-
8876# Rope project settings
89- .ropeproject
77+ .ropeproject
78+
79+ # mkdocs documentation
80+ /site
81+
82+ # mypy
83+ .mypy_cache /
84+
85+
86+ # ## Node template
87+ # Logs
88+ logs
89+ * .log
90+ npm-debug.log *
91+ yarn-debug.log *
92+ yarn-error.log *
93+
94+ # Runtime data
95+ pids
96+ * .pid
97+ * .seed
98+ * .pid.lock
99+
100+ # Directory for instrumented libs generated by jscoverage/JSCover
101+ lib-cov
102+
103+ # Coverage directory used by tools like istanbul
104+ coverage
105+
106+ # nyc test coverage
107+ .nyc_output
108+
109+ # Bower dependency directory (https://bower.io/)
110+ bower_components
111+
112+ # node-waf configuration
113+ .lock-wscript
114+
115+ # Compiled binary addons (http://nodejs.org/api/addons.html)
116+ build /Release
117+
118+ # Dependency directories
119+ node_modules /
120+ jspm_packages /
121+
122+ # Typescript v1 declaration files
123+ typings /
124+
125+ # Optional npm cache directory
126+ .npm
127+
128+ # Optional eslint cache
129+ .eslintcache
130+
131+ # Optional REPL history
132+ .node_repl_history
133+
134+ # Output of 'npm pack'
135+ * .tgz
136+
137+ # Yarn Integrity file
138+ .yarn-integrity
139+
140+
141+ # ## Linux template
142+ * ~
143+
144+ # temporary files which can be created if a process still has a handle open of a deleted file
145+ .fuse_hidden *
146+
147+ # KDE directory preferences
148+ .directory
149+
150+ # Linux trash folder which might appear on any partition or disk
151+ .Trash- *
152+
153+ # .nfs files are created when an open file is removed but is still being accessed
154+ .nfs *
155+
156+
157+ # ## VisualStudioCode template
158+ .vscode /*
159+ ! .vscode /settings.json
160+ ! .vscode /tasks.json
161+ ! .vscode /launch.json
162+ ! .vscode /extensions.json
163+
164+
165+
166+
167+
168+ # ## Windows template
169+ # Windows thumbnail cache files
170+ Thumbs.db
171+ ehthumbs.db
172+ ehthumbs_vista.db
173+
174+ # Dump file
175+ * .stackdump
176+
177+ # Folder config file
178+ Desktop.ini
179+
180+ # Recycle Bin used on file shares
181+ $RECYCLE.BIN /
182+
183+ # Windows Installer files
184+ * .cab
185+ * .msi
186+ * .msm
187+ * .msp
188+
189+ # Windows shortcuts
190+ * .lnk
191+
192+
193+ # ## macOS template
194+ # General
195+ * .DS_Store
196+ .AppleDouble
197+ .LSOverride
198+
199+ # Icon must end with two \r
200+ Icon
201+
202+ # Thumbnails
203+ ._ *
204+
205+ # Files that might appear in the root of a volume
206+ .DocumentRevisions-V100
207+ .fseventsd
208+ .Spotlight-V100
209+ .TemporaryItems
210+ .Trashes
211+ .VolumeIcon.icns
212+ .com.apple.timemachine.donotpresent
213+
214+ # Directories potentially created on remote AFP share
215+ .AppleDB
216+ .AppleDesktop
217+ Network Trash Folder
218+ Temporary Items
219+ .apdisk
220+
221+
222+ # ## SublimeText template
223+ # Cache files for Sublime Text
224+ * .tmlanguage.cache
225+ * .tmPreferences.cache
226+ * .stTheme.cache
227+
228+ # Workspace files are user-specific
229+ * .sublime-workspace
230+
231+ # Project files should be checked into the repository, unless a significant
232+ # proportion of contributors will probably not be using Sublime Text
233+ # *.sublime-project
234+
235+ # SFTP configuration file
236+ sftp-config.json
237+
238+ # Package control specific files
239+ Package Control.last-run
240+ Package Control.ca-list
241+ Package Control.ca-bundle
242+ Package Control.system-ca-bundle
243+ Package Control.cache /
244+ Package Control.ca-certs /
245+ Package Control.merged-ca-bundle
246+ Package Control.user-ca-bundle
247+ oscrypto-ca-bundle.crt
248+ bh_unicode_properties.cache
249+
250+ # Sublime-github package stores a github token in this file
251+ # https://packagecontrol.io/packages/sublime-github
252+ GitHub.sublime-settings
253+
254+
255+ # ## Vim template
256+ # Swap
257+ [._ ]* .s [a-v ][a-z ]
258+ [._ ]* .sw [a-p ]
259+ [._ ]s [a-v ][a-z ]
260+ [._ ]sw [a-p ]
261+
262+ # Session
263+ Session.vim
264+
265+ # Temporary
266+ .netrwhist
267+
268+ # VSCode
269+ .vscode
270+
271+ # Auto-generated tag files
272+ tags
273+
274+ # ## Project template
275+ .envs
276+ dmenu /media /
277+ .pytest_cache /
278+ .idea /
279+ .ipynb_checkpoints /
0 commit comments