1
+ # DSS specific stuff
2
+ dist /
3
+ .wlock
4
+ .ts
5
+
1
6
# Byte-compiled / optimized / DLL files
2
7
__pycache__ /
3
8
* .py [cod ]
@@ -26,6 +31,7 @@ share/python-wheels/
26
31
.installed.cfg
27
32
* .egg
28
33
MANIFEST
34
+ .DS_Store
29
35
30
36
# PyInstaller
31
37
# Usually these files are written by a python script from a template
@@ -46,10 +52,12 @@ htmlcov/
46
52
.cache
47
53
nosetests.xml
48
54
coverage.xml
55
+ unit.xml
49
56
* .cover
50
57
* .py,cover
51
58
.hypothesis /
52
59
.pytest_cache /
60
+ cover /
53
61
54
62
# Translations
55
63
* .mo
@@ -82,14 +90,16 @@ profile_default/
82
90
ipython_config.py
83
91
84
92
# 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:
85
95
.python-version
86
96
87
97
# pipenv
88
98
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
99
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90
100
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91
101
# install all needed dependencies.
92
- # Pipfile.lock
102
+ Pipfile.lock
93
103
94
104
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
105
__pypackages__ /
@@ -127,3 +137,95 @@ dmypy.json
127
137
128
138
# Pyre type checker
129
139
.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