Skip to content

Commit 62910e7

Browse files
committed
Use template for .gitignore
1 parent 12f3475 commit 62910e7

File tree

1 file changed

+308
-2
lines changed

1 file changed

+308
-2
lines changed

.gitignore

+308-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,311 @@
1+
/unit_tests/_trial_temp/
2+
/unit_tests/file_parsing_tests/_trial_temp/
3+
4+
# Created by .ignore support plugin (hsz.mobi)
5+
### Python template
6+
# Byte-compiled / optimized / DLL files
17
__pycache__/
28
checks/__pycache__/
9+
*.py[cod]
10+
*$py.class
311

4-
/unit_tests/_trial_temp/
5-
/unit_tests/file_parsing_tests/_trial_temp/
12+
# C extensions
13+
*.so
14+
15+
# Distribution / packaging
16+
.Python
17+
env/
18+
build/
19+
develop-eggs/
20+
dist/
21+
downloads/
22+
eggs/
23+
.eggs/
24+
lib/
25+
lib64/
26+
parts/
27+
sdist/
28+
var/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*,cover
52+
.hypothesis/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
target/
74+
75+
# IPython Notebook
76+
.ipynb_checkpoints
77+
78+
# pyenv
79+
.python-version
80+
81+
# celery beat schedule file
82+
celerybeat-schedule
83+
84+
# dotenv
85+
.env
86+
87+
# virtualenv
88+
venv/
89+
ENV/
90+
91+
# Spyder project settings
92+
.spyderproject
93+
94+
# Rope project settings
95+
.ropeproject
96+
### VirtualEnv template
97+
# Virtualenv
98+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
99+
[Bb]in
100+
[Ii]nclude
101+
[Ll]ib
102+
[Ll]ib64
103+
[Ll]ocal
104+
[Ss]cripts
105+
pyvenv.cfg
106+
.venv
107+
pip-selfcheck.json
108+
### JetBrains template
109+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
110+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
111+
112+
# User-specific stuff:
113+
.idea/workspace.xml
114+
.idea/tasks.xml
115+
.idea/dictionaries
116+
.idea/vcs.xml
117+
.idea/jsLibraryMappings.xml
118+
119+
# Sensitive or high-churn files:
120+
.idea/dataSources.ids
121+
.idea/dataSources.xml
122+
.idea/dataSources.local.xml
123+
.idea/sqlDataSources.xml
124+
.idea/dynamic.xml
125+
.idea/uiDesigner.xml
126+
127+
# Gradle:
128+
.idea/gradle.xml
129+
.idea/libraries
130+
131+
# Mongo Explorer plugin:
132+
.idea/mongoSettings.xml
133+
134+
.idea/
135+
136+
## File-based project format:
137+
*.iws
138+
139+
## Plugin-specific files:
140+
141+
# IntelliJ
142+
/out/
143+
144+
# mpeltonen/sbt-idea plugin
145+
.idea_modules/
146+
147+
# JIRA plugin
148+
atlassian-ide-plugin.xml
149+
150+
# Crashlytics plugin (for Android Studio and IntelliJ)
151+
com_crashlytics_export_strings.xml
152+
crashlytics.properties
153+
crashlytics-build.properties
154+
fabric.properties
155+
156+
### Python template
157+
# Byte-compiled / optimized / DLL files
158+
159+
# C extensions
160+
161+
# Distribution / packaging
162+
wheels/
163+
share/python-wheels/
164+
MANIFEST
165+
166+
# PyInstaller
167+
# Usually these files are written by a python script from a template
168+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
169+
170+
# Installer logs
171+
172+
# Unit test / coverage reports
173+
.nox/
174+
*.cover
175+
*.py,cover
176+
.pytest_cache/
177+
cover/
178+
179+
# Translations
180+
181+
# Django stuff:
182+
db.sqlite3
183+
db.sqlite3-journal
184+
185+
# Flask stuff:
186+
187+
# Scrapy stuff:
188+
189+
# Sphinx documentation
190+
191+
# PyBuilder
192+
.pybuilder/
193+
194+
# Jupyter Notebook
195+
196+
# IPython
197+
profile_default/
198+
ipython_config.py
199+
200+
# pyenv
201+
# For a library or package, you might want to ignore these files since the code is
202+
# intended to run in multiple environments; otherwise, check them in:
203+
# .python-version
204+
205+
# pipenv
206+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
207+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
208+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
209+
# install all needed dependencies.
210+
#Pipfile.lock
211+
212+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
213+
__pypackages__/
214+
215+
# Celery stuff
216+
celerybeat.pid
217+
218+
# SageMath parsed files
219+
*.sage.py
220+
221+
# Environments
222+
env.bak/
223+
venv.bak/
224+
225+
# Spyder project settings
226+
.spyproject
227+
228+
# Rope project settings
229+
230+
# mkdocs documentation
231+
/site
232+
233+
# mypy
234+
.mypy_cache/
235+
.dmypy.json
236+
dmypy.json
237+
238+
# Pyre type checker
239+
.pyre/
240+
241+
# pytype static type analyzer
242+
.pytype/
243+
244+
# Cython debug symbols
245+
cython_debug/
246+
247+
### JetBrains template
248+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
249+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
250+
251+
# User-specific stuff
252+
.idea/**/workspace.xml
253+
.idea/**/tasks.xml
254+
.idea/**/usage.statistics.xml
255+
.idea/**/dictionaries
256+
.idea/**/shelf
257+
258+
# Generated files
259+
.idea/**/contentModel.xml
260+
261+
# Sensitive or high-churn files
262+
.idea/**/dataSources/
263+
.idea/**/dataSources.ids
264+
.idea/**/dataSources.local.xml
265+
.idea/**/sqlDataSources.xml
266+
.idea/**/dynamic.xml
267+
.idea/**/uiDesigner.xml
268+
.idea/**/dbnavigator.xml
269+
270+
# Gradle
271+
.idea/**/gradle.xml
272+
.idea/**/libraries
273+
274+
# Gradle and Maven with auto-import
275+
# When using Gradle or Maven with auto-import, you should exclude module files,
276+
# since they will be recreated, and may cause churn. Uncomment if using
277+
# auto-import.
278+
# .idea/artifacts
279+
# .idea/compiler.xml
280+
# .idea/jarRepositories.xml
281+
# .idea/modules.xml
282+
# .idea/*.iml
283+
# .idea/modules
284+
# *.iml
285+
# *.ipr
286+
287+
# CMake
288+
cmake-build-*/
289+
290+
# Mongo Explorer plugin
291+
.idea/**/mongoSettings.xml
292+
293+
# File-based project format
294+
295+
# IntelliJ
296+
out/
297+
298+
# mpeltonen/sbt-idea plugin
299+
300+
# JIRA plugin
301+
302+
# Cursive Clojure plugin
303+
.idea/replstate.xml
304+
305+
# Crashlytics plugin (for Android Studio and IntelliJ)
306+
307+
# Editor-based Rest Client
308+
.idea/httpRequests
309+
310+
# Android studio 3.1+ serialized cache file
311+
.idea/caches/build_file_checksums.ser

0 commit comments

Comments
 (0)