1+
2+ # Created by https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
3+ .aws-sam
4+ .idea
5+ samconfig.toml
6+ packaged.yaml
7+ # ## Linux ###
8+ * ~
9+
10+ # temporary files which can be created if a process still has a handle open of a deleted file
11+ .fuse_hidden *
12+
13+ # KDE directory preferences
14+ .directory
15+
16+ # Linux trash folder which might appear on any partition or disk
17+ .Trash- *
18+
19+ # .nfs files are created when an open file is removed but is still being accessed
20+ .nfs *
21+
22+ # ## OSX ###
23+ * .DS_Store
24+ .AppleDouble
25+ .LSOverride
26+
27+ # Icon must end with two \r
28+ Icon
29+
30+ # Thumbnails
31+ ._ *
32+
33+ # Files that might appear in the root of a volume
34+ .DocumentRevisions-V100
35+ .fseventsd
36+ .Spotlight-V100
37+ .TemporaryItems
38+ .Trashes
39+ .VolumeIcon.icns
40+ .com.apple.timemachine.donotpresent
41+
42+ # Directories potentially created on remote AFP share
43+ .AppleDB
44+ .AppleDesktop
45+ Network Trash Folder
46+ Temporary Items
47+ .apdisk
48+
49+ # ## PyCharm ###
50+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
51+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
52+
53+ # User-specific stuff:
54+ .idea /** /workspace.xml
55+ .idea /** /tasks.xml
56+ .idea /dictionaries
57+
58+ # Sensitive or high-churn files:
59+ .idea /** /dataSources /
60+ .idea /** /dataSources.ids
61+ .idea /** /dataSources.xml
62+ .idea /** /dataSources.local.xml
63+ .idea /** /sqlDataSources.xml
64+ .idea /** /dynamic.xml
65+ .idea /** /uiDesigner.xml
66+
67+ # Gradle:
68+ .idea /** /gradle.xml
69+ .idea /** /libraries
70+
71+ # CMake
72+ cmake-build-debug /
73+
74+ # Mongo Explorer plugin:
75+ .idea /** /mongoSettings.xml
76+
77+ # # File-based project format:
78+ * .iws
79+
80+ # # Plugin-specific files:
81+
82+ # IntelliJ
83+ /out /
84+
85+ # mpeltonen/sbt-idea plugin
86+ .idea_modules /
87+
88+ # JIRA plugin
89+ atlassian-ide-plugin.xml
90+
91+ # Cursive Clojure plugin
92+ .idea /replstate.xml
93+
94+ # Ruby plugin and RubyMine
95+ /.rakeTasks
96+
97+ # Crashlytics plugin (for Android Studio and IntelliJ)
98+ com_crashlytics_export_strings.xml
99+ crashlytics.properties
100+ crashlytics-build.properties
101+ fabric.properties
102+
103+ # ## PyCharm Patch ###
104+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
105+
106+ # *.iml
107+ # modules.xml
108+ # .idea/misc.xml
109+ # *.ipr
110+
111+ # Sonarlint plugin
112+ .idea /sonarlint
113+
114+ # ## Python ###
115+ # Byte-compiled / optimized / DLL files
116+ __pycache__ /
117+ * .py [cod ]
118+ * $py.class
119+
120+ # C extensions
121+ * .so
122+
123+ # Distribution / packaging
124+ .Python
125+ build /
126+ develop-eggs /
127+ dist /
128+ downloads /
129+ eggs /
130+ .eggs /
131+ lib /
132+ lib64 /
133+ parts /
134+ sdist /
135+ var /
136+ wheels /
137+ * .egg-info /
138+ .installed.cfg
139+ * .egg
140+
141+ # PyInstaller
142+ # Usually these files are written by a python script from a template
143+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
144+ * .manifest
145+ * .spec
146+
147+ # Installer logs
148+ pip-log.txt
149+ pip-delete-this-directory.txt
150+
151+ # Unit test / coverage reports
152+ htmlcov /
153+ .tox /
154+ .coverage
155+ .coverage. *
156+ .cache
157+ .pytest_cache /
158+ nosetests.xml
159+ coverage.xml
160+ * .cover
161+ .hypothesis /
162+
163+ # Translations
164+ * .mo
165+ * .pot
166+
167+ # Flask stuff:
168+ instance /
169+ .webassets-cache
170+
171+ # Scrapy stuff:
172+ .scrapy
173+
174+ # Sphinx documentation
175+ docs /_build /
176+
177+ # PyBuilder
178+ target /
179+
180+ # Jupyter Notebook
181+ .ipynb_checkpoints
182+
183+ # pyenv
184+ .python-version
185+
186+ # celery beat schedule file
187+ celerybeat-schedule. *
188+
189+ # SageMath parsed files
190+ * .sage.py
191+
192+ # Environments
193+ .env
194+ .venv
195+ env /
196+ venv /
197+ ENV /
198+ env.bak /
199+ venv.bak /
200+
201+ # Spyder project settings
202+ .spyderproject
203+ .spyproject
204+
205+ # Rope project settings
206+ .ropeproject
207+
208+ # mkdocs documentation
209+ /site
210+
211+ # mypy
212+ .mypy_cache /
213+
214+ # ## VisualStudioCode ###
215+ .vscode /*
216+ ! .vscode /settings.json
217+ ! .vscode /tasks.json
218+ ! .vscode /launch.json
219+ ! .vscode /extensions.json
220+ .history
221+
222+ # ## Windows ###
223+ # Windows thumbnail cache files
224+ Thumbs.db
225+ ehthumbs.db
226+ ehthumbs_vista.db
227+
228+ # Folder config file
229+ Desktop.ini
230+
231+ # Recycle Bin used on file shares
232+ $RECYCLE.BIN /
233+
234+ # Windows Installer files
235+ * .cab
236+ * .msi
237+ * .msm
238+ * .msp
239+
240+ # Windows shortcuts
241+ * .lnk
242+
243+ # Build folder
244+
245+ * /build /*
246+
247+ # End of https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
0 commit comments