Bram Vanroy commited on
Commit
095087c
1 Parent(s): ae38e13

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +242 -0
.gitignore ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.txt
2
+ !src/**/*.txt
3
+ runs*
4
+ wandb*
5
+ Pipfile*
6
+ data/*
7
+ muss
8
+ models/*
9
+ *config.json
10
+
11
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
12
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
13
+
14
+ .idea/
15
+ # User-specific stuff
16
+ .idea/**/workspace.xml
17
+ .idea/**/tasks.xml
18
+ .idea/**/usage.statistics.xml
19
+ .idea/**/dictionaries
20
+ .idea/**/shelf
21
+
22
+ # AWS User-specific
23
+ .idea/**/aws.xml
24
+
25
+ # Generated files
26
+ .idea/**/contentModel.xml
27
+
28
+ # Sensitive or high-churn files
29
+ .idea/**/dataSources/
30
+ .idea/**/dataSources.ids
31
+ .idea/**/dataSources.local.xml
32
+ .idea/**/sqlDataSources.xml
33
+ .idea/**/dynamic.xml
34
+ .idea/**/uiDesigner.xml
35
+ .idea/**/dbnavigator.xml
36
+
37
+ # Gradle
38
+ .idea/**/gradle.xml
39
+ .idea/**/libraries
40
+
41
+ # Gradle and Maven with auto-import
42
+ # When using Gradle or Maven with auto-import, you should exclude module files,
43
+ # since they will be recreated, and may cause churn. Uncomment if using
44
+ # auto-import.
45
+ # .idea/artifacts
46
+ # .idea/compiler.xml
47
+ # .idea/jarRepositories.xml
48
+ # .idea/modules.xml
49
+ # .idea/*.iml
50
+ # .idea/modules
51
+ # *.iml
52
+ # *.ipr
53
+
54
+ # CMake
55
+ cmake-build-*/
56
+
57
+ # Mongo Explorer plugin
58
+ .idea/**/mongoSettings.xml
59
+
60
+ # File-based project format
61
+ *.iws
62
+
63
+ # IntelliJ
64
+ out/
65
+
66
+ # mpeltonen/sbt-idea plugin
67
+ .idea_modules/
68
+
69
+ # JIRA plugin
70
+ atlassian-ide-plugin.xml
71
+
72
+ # Cursive Clojure plugin
73
+ .idea/replstate.xml
74
+
75
+ # SonarLint plugin
76
+ .idea/sonarlint/
77
+
78
+ # Crashlytics plugin (for Android Studio and IntelliJ)
79
+ com_crashlytics_export_strings.xml
80
+ crashlytics.properties
81
+ crashlytics-build.properties
82
+ fabric.properties
83
+
84
+ # Editor-based Rest Client
85
+ .idea/httpRequests
86
+
87
+ # Android studio 3.1+ serialized cache file
88
+ .idea/caches/build_file_checksums.ser
89
+
90
+
91
+ # Byte-compiled / optimized / DLL files
92
+ __pycache__/
93
+ *.py[cod]
94
+ *$py.class
95
+
96
+ # C extensions
97
+ *.so
98
+
99
+ # Distribution / packaging
100
+ .Python
101
+ build/
102
+ develop-eggs/
103
+ dist/
104
+ downloads/
105
+ eggs/
106
+ .eggs/
107
+ lib/
108
+ lib64/
109
+ parts/
110
+ sdist/
111
+ var/
112
+ wheels/
113
+ share/python-wheels/
114
+ *.egg-info/
115
+ .installed.cfg
116
+ *.egg
117
+ MANIFEST
118
+
119
+ # PyInstaller
120
+ # Usually these files are written by a python script from a template
121
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
122
+ *.manifest
123
+ *.spec
124
+
125
+ # Installer logs
126
+ pip-log.txt
127
+ pip-delete-this-directory.txt
128
+
129
+ # Unit test / coverage reports
130
+ htmlcov/
131
+ .tox/
132
+ .nox/
133
+ .coverage
134
+ .coverage.*
135
+ .cache
136
+ nosetests.xml
137
+ coverage.xml
138
+ *.cover
139
+ *.py,cover
140
+ .hypothesis/
141
+ .pytest_cache/
142
+ cover/
143
+
144
+ # Translations
145
+ *.mo
146
+ *.pot
147
+
148
+ # Django stuff:
149
+ *.log
150
+ local_settings.py
151
+ db.sqlite3
152
+ db.sqlite3-journal
153
+
154
+ # Flask stuff:
155
+ instance/
156
+ .webassets-cache
157
+
158
+ # Scrapy stuff:
159
+ .scrapy
160
+
161
+ # Sphinx documentation
162
+ docs/_build/
163
+
164
+ # PyBuilder
165
+ .pybuilder/
166
+ target/
167
+
168
+ # Jupyter Notebook
169
+ .ipynb_checkpoints
170
+
171
+ # IPython
172
+ profile_default/
173
+ ipython_config.py
174
+
175
+ # pyenv
176
+ # For a library or package, you might want to ignore these files since the code is
177
+ # intended to run in multiple environments; otherwise, check them in:
178
+ # .python-version
179
+
180
+ # pipenv
181
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
182
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
183
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
184
+ # install all needed dependencies.
185
+ #Pipfile.lock
186
+
187
+ # poetry
188
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
189
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
190
+ # commonly ignored for libraries.
191
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
192
+ #poetry.lock
193
+
194
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
195
+ __pypackages__/
196
+
197
+ # Celery stuff
198
+ celerybeat-schedule
199
+ celerybeat.pid
200
+
201
+ # SageMath parsed files
202
+ *.sage.py
203
+
204
+ # Environments
205
+ .env
206
+ .venv
207
+ env/
208
+ venv/
209
+ ENV/
210
+ env.bak/
211
+ venv.bak/
212
+
213
+ # Spyder project settings
214
+ .spyderproject
215
+ .spyproject
216
+
217
+ # Rope project settings
218
+ .ropeproject
219
+
220
+ # mkdocs documentation
221
+ /site
222
+
223
+ # mypy
224
+ .mypy_cache/
225
+ .dmypy.json
226
+ dmypy.json
227
+
228
+ # Pyre type checker
229
+ .pyre/
230
+
231
+ # pytype static type analyzer
232
+ .pytype/
233
+
234
+ # Cython debug symbols
235
+ cython_debug/
236
+
237
+ # PyCharm
238
+ # JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
239
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
240
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
241
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
242
+ #.idea/