Skip to content

Commit e9a6d6b

Browse files
Update .gitignore
1 parent d218f90 commit e9a6d6b

File tree

1 file changed

+103
-1
lines changed

1 file changed

+103
-1
lines changed

Diff for: .gitignore

+103-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# DSS specific stuff
2+
dist/
3+
.wlock
4+
.ts
5+
16
# Byte-compiled / optimized / DLL files
27
__pycache__/
38
*.py[cod]
@@ -26,6 +31,7 @@ share/python-wheels/
2631
.installed.cfg
2732
*.egg
2833
MANIFEST
34+
.DS_Store
2935

3036
# PyInstaller
3137
# Usually these files are written by a python script from a template
@@ -46,10 +52,12 @@ htmlcov/
4652
.cache
4753
nosetests.xml
4854
coverage.xml
55+
unit.xml
4956
*.cover
5057
*.py,cover
5158
.hypothesis/
5259
.pytest_cache/
60+
cover/
5361

5462
# Translations
5563
*.mo
@@ -82,14 +90,16 @@ profile_default/
8290
ipython_config.py
8391

8492
# pyenv
93+
# For a library or package, you might want to ignore these files since the code is
94+
# intended to run in multiple environments; otherwise, check them in:
8595
.python-version
8696

8797
# pipenv
8898
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
8999
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90100
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91101
# install all needed dependencies.
92-
#Pipfile.lock
102+
Pipfile.lock
93103

94104
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95105
__pypackages__/
@@ -127,3 +137,95 @@ dmypy.json
127137

128138
# Pyre type checker
129139
.pyre/
140+
141+
# pytype static type analyzer
142+
.pytype/
143+
144+
# mac stuff
145+
.DS_Store
146+
147+
# History files
148+
.Rhistory
149+
.Rapp.history
150+
151+
# Session Data files
152+
.RData
153+
154+
# User-specific files
155+
.Ruserdata
156+
157+
# Example code in package build process
158+
*-Ex.R
159+
160+
# Output files from R CMD build
161+
/*.tar.gz
162+
163+
# Output files from R CMD check
164+
/*.Rcheck/
165+
166+
# RStudio files
167+
.Rproj.user/
168+
169+
# produced vignettes
170+
vignettes/*.html
171+
vignettes/*.pdf
172+
173+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
174+
.httr-oauth
175+
176+
# knitr and R markdown default cache directories
177+
*_cache/
178+
/cache/
179+
180+
# Temporary files created by R markdown
181+
*.utf8.md
182+
*.knit.md
183+
184+
# R Environment Variables
185+
.Renviron
186+
187+
# pkgdown site
188+
docs/
189+
190+
# translation temp files
191+
po/*~
192+
193+
# Compiled class file
194+
*.class
195+
196+
# Log file
197+
*.log
198+
199+
# BlueJ files
200+
*.ctxt
201+
202+
# Mobile Tools for Java (J2ME)
203+
.mtj.tmp/
204+
205+
# Package Files #
206+
*.jar
207+
*.war
208+
*.nar
209+
*.ear
210+
*.zip
211+
*.tar.gz
212+
*.rar
213+
214+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
215+
hs_err_pid*
216+
217+
.gradle
218+
**/build/
219+
!src/**/build/
220+
221+
# Ignore Gradle GUI config
222+
gradle-app.setting
223+
224+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
225+
!gradle-wrapper.jar
226+
227+
# Cache of project
228+
.gradletasknamecache
229+
230+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
231+
# gradle/wrapper/gradle-wrapper.properties

0 commit comments

Comments
 (0)