Skip to content

Commit e0c1b4d

Browse files
committed
Adding gitignore with all systems and languages used
1 parent 5501f60 commit e0c1b4d

File tree

1 file changed

+227
-0
lines changed

1 file changed

+227
-0
lines changed

.gitignore

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
2+
# Created by https://www.gitignore.io/api/r,java,linux,macos,python,windows
3+
4+
### Java ###
5+
# Compiled class file
6+
*.class
7+
8+
# Log file
9+
*.log
10+
11+
# BlueJ files
12+
*.ctxt
13+
14+
# Mobile Tools for Java (J2ME)
15+
.mtj.tmp/
16+
17+
# Package Files #
18+
*.jar
19+
*.war
20+
*.ear
21+
*.zip
22+
*.tar.gz
23+
*.rar
24+
25+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
26+
hs_err_pid*
27+
28+
### Linux ###
29+
*~
30+
31+
# temporary files which can be created if a process still has a handle open of a deleted file
32+
.fuse_hidden*
33+
34+
# KDE directory preferences
35+
.directory
36+
37+
# Linux trash folder which might appear on any partition or disk
38+
.Trash-*
39+
40+
# .nfs files are created when an open file is removed but is still being accessed
41+
.nfs*
42+
43+
### macOS ###
44+
*.DS_Store
45+
.AppleDouble
46+
.LSOverride
47+
48+
# Icon must end with two \r
49+
Icon
50+
51+
# Thumbnails
52+
._*
53+
54+
# Files that might appear in the root of a volume
55+
.DocumentRevisions-V100
56+
.fseventsd
57+
.Spotlight-V100
58+
.TemporaryItems
59+
.Trashes
60+
.VolumeIcon.icns
61+
.com.apple.timemachine.donotpresent
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
### Python ###
71+
# Byte-compiled / optimized / DLL files
72+
__pycache__/
73+
*.py[cod]
74+
*$py.class
75+
76+
# C extensions
77+
*.so
78+
79+
# Distribution / packaging
80+
.Python
81+
build/
82+
develop-eggs/
83+
dist/
84+
downloads/
85+
eggs/
86+
.eggs/
87+
lib/
88+
lib64/
89+
parts/
90+
sdist/
91+
var/
92+
wheels/
93+
*.egg-info/
94+
.installed.cfg
95+
*.egg
96+
97+
# PyInstaller
98+
# Usually these files are written by a python script from a template
99+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
100+
*.manifest
101+
*.spec
102+
103+
# Installer logs
104+
pip-log.txt
105+
pip-delete-this-directory.txt
106+
107+
# Unit test / coverage reports
108+
htmlcov/
109+
.tox/
110+
.coverage
111+
.coverage.*
112+
.cache
113+
.pytest_cache/
114+
nosetests.xml
115+
coverage.xml
116+
*.cover
117+
.hypothesis/
118+
119+
# Translations
120+
*.mo
121+
*.pot
122+
123+
# Flask stuff:
124+
instance/
125+
.webassets-cache
126+
127+
# Scrapy stuff:
128+
.scrapy
129+
130+
# Sphinx documentation
131+
docs/_build/
132+
133+
# PyBuilder
134+
target/
135+
136+
# Jupyter Notebook
137+
.ipynb_checkpoints
138+
139+
# pyenv
140+
.python-version
141+
142+
# celery beat schedule file
143+
celerybeat-schedule.*
144+
145+
# SageMath parsed files
146+
*.sage.py
147+
148+
# Environments
149+
.env
150+
.venv
151+
env/
152+
venv/
153+
ENV/
154+
env.bak/
155+
venv.bak/
156+
157+
# Spyder project settings
158+
.spyderproject
159+
.spyproject
160+
161+
# Rope project settings
162+
.ropeproject
163+
164+
# mkdocs documentation
165+
/site
166+
167+
# mypy
168+
.mypy_cache/
169+
170+
### R ###
171+
# History files
172+
.Rhistory
173+
.Rapp.history
174+
175+
# Session Data files
176+
.RData
177+
178+
# Example code in package build process
179+
*-Ex.R
180+
181+
# Output files from R CMD build
182+
/*.tar.gz
183+
184+
# Output files from R CMD check
185+
/*.Rcheck/
186+
187+
# RStudio files
188+
.Rproj.user/
189+
190+
# produced vignettes
191+
vignettes/*.html
192+
vignettes/*.pdf
193+
194+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
195+
.httr-oauth
196+
197+
# knitr and R markdown default cache directories
198+
/*_cache/
199+
/cache/
200+
201+
# Temporary files created by R markdown
202+
*.utf8.md
203+
*.knit.md
204+
205+
### Windows ###
206+
# Windows thumbnail cache files
207+
Thumbs.db
208+
ehthumbs.db
209+
ehthumbs_vista.db
210+
211+
# Folder config file
212+
Desktop.ini
213+
214+
# Recycle Bin used on file shares
215+
$RECYCLE.BIN/
216+
217+
# Windows Installer files
218+
*.cab
219+
*.msi
220+
*.msm
221+
*.msp
222+
223+
# Windows shortcuts
224+
*.lnk
225+
226+
227+
# End of https://www.gitignore.io/api/r,java,linux,macos,python,windows

0 commit comments

Comments
 (0)