Gabriel CHUA commited on
Commit
a573698
1 Parent(s): 0bbd8ba

add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +316 -0
.gitignore ADDED
@@ -0,0 +1,316 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Created by https://www.toptal.com/developers/gitignore/api/python,macos,visualstudiocode,jetbrains+all
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=python,macos,visualstudiocode,jetbrains+all
3
+
4
+ ### JetBrains+all ###
5
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
6
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7
+
8
+ # User-specific stuff
9
+ .idea/**/workspace.xml
10
+ .idea/**/tasks.xml
11
+ .idea/**/usage.statistics.xml
12
+ .idea/**/dictionaries
13
+ .idea/**/shelf
14
+
15
+ # AWS User-specific
16
+ .idea/**/aws.xml
17
+
18
+ # Generated files
19
+ .idea/**/contentModel.xml
20
+
21
+ # Sensitive or high-churn files
22
+ .idea/**/dataSources/
23
+ .idea/**/dataSources.ids
24
+ .idea/**/dataSources.local.xml
25
+ .idea/**/sqlDataSources.xml
26
+ .idea/**/dynamic.xml
27
+ .idea/**/uiDesigner.xml
28
+ .idea/**/dbnavigator.xml
29
+
30
+ # Gradle
31
+ .idea/**/gradle.xml
32
+ .idea/**/libraries
33
+
34
+ # Gradle and Maven with auto-import
35
+ # When using Gradle or Maven with auto-import, you should exclude module files,
36
+ # since they will be recreated, and may cause churn. Uncomment if using
37
+ # auto-import.
38
+ # .idea/artifacts
39
+ # .idea/compiler.xml
40
+ # .idea/jarRepositories.xml
41
+ # .idea/modules.xml
42
+ # .idea/*.iml
43
+ # .idea/modules
44
+ # *.iml
45
+ # *.ipr
46
+
47
+ # CMake
48
+ cmake-build-*/
49
+
50
+ # Mongo Explorer plugin
51
+ .idea/**/mongoSettings.xml
52
+
53
+ # File-based project format
54
+ *.iws
55
+
56
+ # IntelliJ
57
+ out/
58
+
59
+ # mpeltonen/sbt-idea plugin
60
+ .idea_modules/
61
+
62
+ # JIRA plugin
63
+ atlassian-ide-plugin.xml
64
+
65
+ # Cursive Clojure plugin
66
+ .idea/replstate.xml
67
+
68
+ # SonarLint plugin
69
+ .idea/sonarlint/
70
+
71
+ # Crashlytics plugin (for Android Studio and IntelliJ)
72
+ com_crashlytics_export_strings.xml
73
+ crashlytics.properties
74
+ crashlytics-build.properties
75
+ fabric.properties
76
+
77
+ # Editor-based Rest Client
78
+ .idea/httpRequests
79
+
80
+ # Android studio 3.1+ serialized cache file
81
+ .idea/caches/build_file_checksums.ser
82
+
83
+ ### JetBrains+all Patch ###
84
+ # Ignore everything but code style settings and run configurations
85
+ # that are supposed to be shared within teams.
86
+
87
+ .idea/*
88
+
89
+ !.idea/codeStyles
90
+ !.idea/runConfigurations
91
+
92
+ ### macOS ###
93
+ # General
94
+ .DS_Store
95
+ .AppleDouble
96
+ .LSOverride
97
+
98
+ # Icon must end with two \r
99
+ Icon
100
+
101
+
102
+ # Thumbnails
103
+ ._*
104
+
105
+ # Files that might appear in the root of a volume
106
+ .DocumentRevisions-V100
107
+ .fseventsd
108
+ .Spotlight-V100
109
+ .TemporaryItems
110
+ .Trashes
111
+ .VolumeIcon.icns
112
+ .com.apple.timemachine.donotpresent
113
+
114
+ # Directories potentially created on remote AFP share
115
+ .AppleDB
116
+ .AppleDesktop
117
+ Network Trash Folder
118
+ Temporary Items
119
+ .apdisk
120
+
121
+ ### macOS Patch ###
122
+ # iCloud generated files
123
+ *.icloud
124
+
125
+ ### Python ###
126
+ # Byte-compiled / optimized / DLL files
127
+ __pycache__/
128
+ *.py[cod]
129
+ *$py.class
130
+
131
+ # C extensions
132
+ *.so
133
+
134
+ # Distribution / packaging
135
+ .Python
136
+ build/
137
+ develop-eggs/
138
+ dist/
139
+ downloads/
140
+ eggs/
141
+ .eggs/
142
+ lib/
143
+ lib64/
144
+ parts/
145
+ sdist/
146
+ var/
147
+ wheels/
148
+ share/python-wheels/
149
+ *.egg-info/
150
+ .installed.cfg
151
+ *.egg
152
+ MANIFEST
153
+
154
+ # PyInstaller
155
+ # Usually these files are written by a python script from a template
156
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
157
+ *.manifest
158
+ *.spec
159
+
160
+ # Installer logs
161
+ pip-log.txt
162
+ pip-delete-this-directory.txt
163
+
164
+ # Unit test / coverage reports
165
+ htmlcov/
166
+ .tox/
167
+ .nox/
168
+ .coverage
169
+ .coverage.*
170
+ .cache
171
+ nosetests.xml
172
+ coverage.xml
173
+ *.cover
174
+ *.py,cover
175
+ .hypothesis/
176
+ .pytest_cache/
177
+ cover/
178
+
179
+ # Translations
180
+ *.mo
181
+ *.pot
182
+
183
+ # Django stuff:
184
+ *.log
185
+ local_settings.py
186
+ db.sqlite3
187
+ db.sqlite3-journal
188
+
189
+ # Flask stuff:
190
+ instance/
191
+ .webassets-cache
192
+
193
+ # Scrapy stuff:
194
+ .scrapy
195
+
196
+ # Sphinx documentation
197
+ docs/_build/
198
+
199
+ # PyBuilder
200
+ .pybuilder/
201
+ target/
202
+
203
+ # Jupyter Notebook
204
+ .ipynb_checkpoints
205
+
206
+ # IPython
207
+ profile_default/
208
+ ipython_config.py
209
+
210
+ # pyenv
211
+ # For a library or package, you might want to ignore these files since the code is
212
+ # intended to run in multiple environments; otherwise, check them in:
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
+ # poetry
223
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
224
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
225
+ # commonly ignored for libraries.
226
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
227
+ #poetry.lock
228
+
229
+ # pdm
230
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
231
+ #pdm.lock
232
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
233
+ # in version control.
234
+ # https://pdm.fming.dev/#use-with-ide
235
+ .pdm.toml
236
+
237
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
238
+ __pypackages__/
239
+
240
+ # Celery stuff
241
+ celerybeat-schedule
242
+ celerybeat.pid
243
+
244
+ # SageMath parsed files
245
+ *.sage.py
246
+
247
+ # Environments
248
+ .env
249
+ .venv
250
+ env/
251
+ venv/
252
+ ENV/
253
+ env.bak/
254
+ venv.bak/
255
+
256
+ # Spyder project settings
257
+ .spyderproject
258
+ .spyproject
259
+
260
+ # Rope project settings
261
+ .ropeproject
262
+
263
+ # mkdocs documentation
264
+ /site
265
+
266
+ # mypy
267
+ .mypy_cache/
268
+ .dmypy.json
269
+ dmypy.json
270
+
271
+ # Pyre type checker
272
+ .pyre/
273
+
274
+ # pytype static type analyzer
275
+ .pytype/
276
+
277
+ # Cython debug symbols
278
+ cython_debug/
279
+
280
+ # PyCharm
281
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
282
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
283
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
284
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
285
+ #.idea/
286
+
287
+ ### Python Patch ###
288
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
289
+ poetry.toml
290
+
291
+ # ruff
292
+ .ruff_cache/
293
+
294
+ # LSP config files
295
+ pyrightconfig.json
296
+
297
+ ### VisualStudioCode ###
298
+ .vscode/*
299
+ !.vscode/settings.json
300
+ !.vscode/tasks.json
301
+ !.vscode/launch.json
302
+ !.vscode/extensions.json
303
+ !.vscode/*.code-snippets
304
+
305
+ # Local History for Visual Studio Code
306
+ .history/
307
+
308
+ # Built Visual Studio Code Extensions
309
+ *.vsix
310
+
311
+ ### VisualStudioCode Patch ###
312
+ # Ignore all local history of files
313
+ .history
314
+ .ionide
315
+
316
+ # End of https://www.toptal.com/developers/gitignore/api/python,macos,visualstudiocode,jetbrains+all