1+
2+ # Created by https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
3+ # Edit at https://www.gitignore.io/?templates=osx,linux,python,windows,pycharm,visualstudiocode
4+
5+ # ## Linux ###
6+ * ~
7+
8+ # temporary files which can be created if a process still has a handle open of a deleted file
9+ .fuse_hidden *
10+
11+ # KDE directory preferences
12+ .directory
13+
14+ # Linux trash folder which might appear on any partition or disk
15+ .Trash- *
16+
17+ # .nfs files are created when an open file is removed but is still being accessed
18+ .nfs *
19+
20+ # ## OSX ###
21+ # General
22+ .DS_Store
23+ .AppleDouble
24+ .LSOverride
25+
26+ # Icon must end with two \r
27+ Icon
28+
29+ # Thumbnails
30+ ._ *
31+
32+ # Files that might appear in the root of a volume
33+ .DocumentRevisions-V100
34+ .fseventsd
35+ .Spotlight-V100
36+ .TemporaryItems
37+ .Trashes
38+ .VolumeIcon.icns
39+ .com.apple.timemachine.donotpresent
40+
41+ # Directories potentially created on remote AFP share
42+ .AppleDB
43+ .AppleDesktop
44+ Network Trash Folder
45+ Temporary Items
46+ .apdisk
47+
48+ # ## PyCharm ###
49+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
50+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
51+
52+ # User-specific stuff
53+ .idea /** /workspace.xml
54+ .idea /** /tasks.xml
55+ .idea /** /usage.statistics.xml
56+ .idea /** /dictionaries
57+ .idea /** /shelf
58+
59+ # Generated files
60+ .idea /** /contentModel.xml
61+
62+ # Sensitive or high-churn files
63+ .idea /** /dataSources /
64+ .idea /** /dataSources.ids
65+ .idea /** /dataSources.local.xml
66+ .idea /** /sqlDataSources.xml
67+ .idea /** /dynamic.xml
68+ .idea /** /uiDesigner.xml
69+ .idea /** /dbnavigator.xml
70+
71+ # Gradle
72+ .idea /** /gradle.xml
73+ .idea /** /libraries
74+
75+ # Gradle and Maven with auto-import
76+ # When using Gradle or Maven with auto-import, you should exclude module files,
77+ # since they will be recreated, and may cause churn. Uncomment if using
78+ # auto-import.
79+ # .idea/modules.xml
80+ # .idea/*.iml
81+ # .idea/modules
82+ # *.iml
83+ # *.ipr
84+
85+ # CMake
86+ cmake-build- * /
87+
88+ # Mongo Explorer plugin
89+ .idea /** /mongoSettings.xml
90+
91+ # File-based project format
92+ * .iws
93+
94+ # IntelliJ
95+ out /
96+
97+ # mpeltonen/sbt-idea plugin
98+ .idea_modules /
99+
100+ # JIRA plugin
101+ atlassian-ide-plugin.xml
102+
103+ # Cursive Clojure plugin
104+ .idea /replstate.xml
105+
106+ # Crashlytics plugin (for Android Studio and IntelliJ)
107+ com_crashlytics_export_strings.xml
108+ crashlytics.properties
109+ crashlytics-build.properties
110+ fabric.properties
111+
112+ # Editor-based Rest Client
113+ .idea /httpRequests
114+
115+ # Android studio 3.1+ serialized cache file
116+ .idea /caches /build_file_checksums.ser
117+
118+ # ## PyCharm Patch ###
119+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
120+
121+ # *.iml
122+ # modules.xml
123+ # .idea/misc.xml
124+ # *.ipr
125+
126+ # Sonarlint plugin
127+ .idea /sonarlint
128+
129+ # ## Python ###
130+ # Byte-compiled / optimized / DLL files
131+ __pycache__ /
132+ * .py [cod ]
133+ * $py.class
134+
135+ # C extensions
136+ * .so
137+
138+ # Distribution / packaging
139+ .Python
140+ build /
141+ develop-eggs /
142+ dist /
143+ downloads /
144+ eggs /
145+ .eggs /
146+ lib /
147+ lib64 /
148+ parts /
149+ sdist /
150+ var /
151+ wheels /
152+ pip-wheel-metadata /
153+ share /python-wheels /
154+ * .egg-info /
155+ .installed.cfg
156+ * .egg
157+ MANIFEST
158+
159+ # PyInstaller
160+ # Usually these files are written by a python script from a template
161+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
162+ * .manifest
163+ * .spec
164+
165+ # Installer logs
166+ pip-log.txt
167+ pip-delete-this-directory.txt
168+
169+ # Unit test / coverage reports
170+ htmlcov /
171+ .tox /
172+ .nox /
173+ .coverage
174+ .coverage. *
175+ .cache
176+ nosetests.xml
177+ coverage.xml
178+ * .cover
179+ .hypothesis /
180+ .pytest_cache /
181+
182+ # Translations
183+ * .mo
184+ * .pot
185+
186+ # Django stuff:
187+ * .log
188+ local_settings.py
189+ db.sqlite3
190+ db.sqlite3-journal
191+
192+ # Flask stuff:
193+ instance /
194+ .webassets-cache
195+
196+ # Scrapy stuff:
197+ .scrapy
198+
199+ # Sphinx documentation
200+ docs /_build /
201+
202+ # PyBuilder
203+ target /
204+
205+ # Jupyter Notebook
206+ .ipynb_checkpoints
207+
208+ # IPython
209+ profile_default /
210+ ipython_config.py
211+
212+ # pyenv
213+ .python-version
214+
215+ # pipenv
216+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
217+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
218+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
219+ # install all needed dependencies.
220+ # Pipfile.lock
221+
222+ # celery beat schedule file
223+ celerybeat-schedule
224+
225+ # SageMath parsed files
226+ * .sage.py
227+
228+ # Environments
229+ .env
230+ .venv
231+ env /
232+ venv /
233+ ENV /
234+ env.bak /
235+ venv.bak /
236+
237+ # Spyder project settings
238+ .spyderproject
239+ .spyproject
240+
241+ # Rope project settings
242+ .ropeproject
243+
244+ # mkdocs documentation
245+ /site
246+
247+ # mypy
248+ .mypy_cache /
249+ .dmypy.json
250+ dmypy.json
251+
252+ # Pyre type checker
253+ .pyre /
254+
255+ # ## VisualStudioCode ###
256+ .vscode /*
257+ ! .vscode /tasks.json
258+ ! .vscode /launch.json
259+ ! .vscode /extensions.json
260+
261+ # ## VisualStudioCode Patch ###
262+ # Ignore all local history of files
263+ .history
264+
265+ # ## Windows ###
266+ # Windows thumbnail cache files
267+ Thumbs.db
268+ Thumbs.db:encryptable
269+ ehthumbs.db
270+ ehthumbs_vista.db
271+
272+ # Dump file
273+ * .stackdump
274+
275+ # Folder config file
276+ [Dd ]esktop.ini
277+
278+ # Recycle Bin used on file shares
279+ $RECYCLE.BIN /
280+
281+ # Windows Installer files
282+ * .cab
283+ * .msi
284+ * .msix
285+ * .msm
286+ * .msp
287+
288+ # Windows shortcuts
289+ * .lnk
290+
291+ # End of https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
292+
293+ # Misc
294+
295+ test_report
0 commit comments