Skip to content

Commit 21d60a2

Browse files
committed
Quick : initial commit
1 parent fcfc85a commit 21d60a2

24 files changed

+7254
-0
lines changed

.gitattributes

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# SPDX-License-Identifier: MPL-2.0
2+
#this file specifies some rules on specific files for line endings and more.
3+
#it also has a section on which files should NOT be part of an export (git archive) command.
4+
5+
#List of files to NOT export:
6+
.git export-ignore
7+
.github export-ignore
8+
.cirrus.yml export-ignore
9+
.whitesource export-ignore
10+
.vscode export-ignore
11+
.travis.yml export-ignore
12+

.gitignore

+369
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,369 @@
1+
# SPDX-License-Identifier: MPL-2.0
2+
## Ignore Visual Studio temporary files, build results, and
3+
## files generated by popular Visual Studio add-ons.
4+
##
5+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
6+
7+
# User-specific files
8+
*.suo
9+
*.user
10+
*.userosscache
11+
*.sln.docstates
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Build results
17+
[Dd]ebug/
18+
[Dd]ebugPublic/
19+
[Rr]elease/
20+
[Rr]eleases/
21+
x64/
22+
x86/
23+
bld/
24+
[Bb]in/
25+
[Oo]bj/
26+
[Ll]og/
27+
28+
# Visual Studio 2015/2017 cache/options directory
29+
.vs/
30+
# Uncomment if you have tasks that create the project's static files in wwwroot
31+
#wwwroot/
32+
33+
# Visual Studio 2017 auto generated files
34+
Generated\ Files/
35+
36+
# MSTest test Results
37+
[Tt]est[Rr]esult*/
38+
[Bb]uild[Ll]og.*
39+
40+
# NUNIT
41+
*.VisualState.xml
42+
TestResult.xml
43+
44+
# Build Results of an ATL Project
45+
[Dd]ebugPS/
46+
[Rr]eleasePS/
47+
dlldata.c
48+
49+
# Benchmark Results
50+
BenchmarkDotNet.Artifacts/
51+
52+
# .NET Core
53+
project.lock.json
54+
project.fragment.lock.json
55+
artifacts/
56+
**/Properties/launchSettings.json
57+
58+
# StyleCop
59+
StyleCopReport.xml
60+
61+
# Files built by Visual Studio
62+
*_i.c
63+
*_p.c
64+
*_i.h
65+
*.ilk
66+
*.meta
67+
*.obj
68+
*.pch
69+
*.pdb
70+
*.pgc
71+
*.pgd
72+
*.rsp
73+
*.sbr
74+
*.tlb
75+
*.tli
76+
*.tlh
77+
*.tmp
78+
*.tmp_proj
79+
*.log
80+
*.vspscc
81+
*.vssscc
82+
.builds
83+
*.pidb
84+
*.svclog
85+
*.scc
86+
87+
# Chutzpah Test files
88+
_Chutzpah*
89+
90+
# Visual C++ cache files
91+
ipch/
92+
*.aps
93+
*.ncb
94+
*.opendb
95+
*.opensdf
96+
*.sdf
97+
*.cachefile
98+
*.VC.db
99+
*.VC.VC.opendb
100+
101+
# Visual Studio profiler
102+
*.psess
103+
*.vsp
104+
*.vspx
105+
*.sap
106+
107+
# Visual Studio Trace Files
108+
*.e2e
109+
110+
# TFS 2012 Local Workspace
111+
$tf/
112+
113+
# Guidance Automation Toolkit
114+
*.gpState
115+
116+
# ReSharper is a .NET coding add-in
117+
_ReSharper*/
118+
*.[Rr]e[Ss]harper
119+
*.DotSettings.user
120+
121+
# JustCode is a .NET coding add-in
122+
.JustCode
123+
124+
# TeamCity is a build add-in
125+
_TeamCity*
126+
127+
# DotCover is a Code Coverage Tool
128+
*.dotCover
129+
130+
# AxoCover is a Code Coverage Tool
131+
.axoCover/*
132+
!.axoCover/settings.json
133+
134+
# Visual Studio code coverage results
135+
*.coverage
136+
*.coveragexml
137+
138+
# NCrunch
139+
_NCrunch_*
140+
.*crunch*.local.xml
141+
nCrunchTemp_*
142+
143+
# MightyMoose
144+
*.mm.*
145+
AutoTest.Net/
146+
147+
# Web workbench (sass)
148+
.sass-cache/
149+
150+
# Installshield output folder
151+
[Ee]xpress/
152+
153+
# DocProject is a documentation generator add-in
154+
DocProject/buildhelp/
155+
DocProject/Help/*.HxT
156+
DocProject/Help/*.HxC
157+
DocProject/Help/*.hhc
158+
DocProject/Help/*.hhk
159+
DocProject/Help/*.hhp
160+
DocProject/Help/Html2
161+
DocProject/Help/html
162+
163+
# Click-Once directory
164+
publish/
165+
166+
# Publish Web Output
167+
*.[Pp]ublish.xml
168+
*.azurePubxml
169+
# Note: Comment the next line if you want to checkin your web deploy settings,
170+
# but database connection strings (with potential passwords) will be unencrypted
171+
*.pubxml
172+
*.publishproj
173+
174+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
175+
# checkin your Azure Web App publish settings, but sensitive information contained
176+
# in these scripts will be unencrypted
177+
PublishScripts/
178+
179+
# NuGet Packages
180+
*.nupkg
181+
# The packages folder can be ignored because of Package Restore
182+
**/[Pp]ackages/*
183+
# except build/, which is used as an MSBuild target.
184+
!**/[Pp]ackages/build/
185+
# Uncomment if necessary however generally it will be regenerated when needed
186+
#!**/[Pp]ackages/repositories.config
187+
# NuGet v3's project.json files produces more ignorable files
188+
*.nuget.props
189+
*.nuget.targets
190+
191+
# Microsoft Azure Build Output
192+
csx/
193+
*.build.csdef
194+
195+
# Microsoft Azure Emulator
196+
ecf/
197+
rcf/
198+
199+
# Windows Store app package directories and files
200+
AppPackages/
201+
BundleArtifacts/
202+
Package.StoreAssociation.xml
203+
_pkginfo.txt
204+
*.appx
205+
206+
# Visual Studio cache files
207+
# files ending in .cache can be ignored
208+
*.[Cc]ache
209+
# but keep track of directories ending in .cache
210+
!*.[Cc]ache/
211+
212+
# Others
213+
ClientBin/
214+
~$*
215+
*~
216+
*.dbmdl
217+
*.dbproj.schemaview
218+
*.jfm
219+
*.pfx
220+
*.publishsettings
221+
orleans.codegen.cs
222+
223+
# Since there are multiple workflows, uncomment next line to ignore bower_components
224+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
225+
#bower_components/
226+
227+
# RIA/Silverlight projects
228+
Generated_Code/
229+
230+
# Backup & report files from converting an old project file
231+
# to a newer Visual Studio version. Backup files are not needed,
232+
# because we have git ;-)
233+
_UpgradeReport_Files/
234+
Backup*/
235+
UpgradeLog*.XML
236+
UpgradeLog*.htm
237+
238+
# SQL Server files
239+
*.mdf
240+
*.ldf
241+
*.ndf
242+
243+
# Business Intelligence projects
244+
*.rdl.data
245+
*.bim.layout
246+
*.bim_*.settings
247+
248+
# Microsoft Fakes
249+
FakesAssemblies/
250+
251+
# GhostDoc plugin setting file
252+
*.GhostDoc.xml
253+
254+
# Node.js Tools for Visual Studio
255+
.ntvs_analysis.dat
256+
node_modules/
257+
258+
# TypeScript v1 declaration files
259+
typings/
260+
261+
# Visual Studio 6 build log
262+
*.plg
263+
264+
# Visual Studio 6 workspace options file
265+
*.opt
266+
267+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
268+
*.vbw
269+
270+
# Visual Studio LightSwitch build output
271+
**/*.HTMLClient/GeneratedArtifacts
272+
**/*.DesktopClient/GeneratedArtifacts
273+
**/*.DesktopClient/ModelManifest.xml
274+
**/*.Server/GeneratedArtifacts
275+
**/*.Server/ModelManifest.xml
276+
_Pvt_Extensions
277+
278+
# Paket dependency manager
279+
.paket/paket.exe
280+
paket-files/
281+
282+
# FAKE - F# Make
283+
.fake/
284+
285+
# JetBrains Rider
286+
.idea/
287+
*.sln.iml
288+
289+
# CodeRush
290+
.cr/
291+
292+
# Python Tools for Visual Studio (PTVS)
293+
__pycache__/
294+
*.pyc
295+
296+
# Cake - Uncomment if you are using it
297+
# tools/**
298+
# !tools/packages.config
299+
300+
# Tabs Studio
301+
*.tss
302+
303+
# Telerik's JustMock configuration file
304+
*.jmconfig
305+
306+
# BizTalk build output
307+
*.btp.cs
308+
*.btm.cs
309+
*.odx.cs
310+
*.xsd.cs
311+
312+
# OpenCover UI analysis results
313+
OpenCover/
314+
315+
# Azure Stream Analytics local run output
316+
ASALocalRun/
317+
318+
# Prerequisites
319+
*.d
320+
321+
# Object files
322+
*.o
323+
*.ko
324+
*.obj
325+
*.elf
326+
327+
# Linker output
328+
*.ilk
329+
*.map
330+
*.exp
331+
332+
# Precompiled Headers
333+
*.gch
334+
*.pch
335+
336+
# Libraries
337+
*.lib
338+
*.a
339+
*.la
340+
*.lo
341+
342+
# Shared objects (inc. Windows DLLs)
343+
*.dll
344+
*.so
345+
*.so.*
346+
*.dylib
347+
348+
# Executables
349+
*.exe
350+
*.out
351+
*.app
352+
*.i*86
353+
*.x86_64
354+
*.hex
355+
356+
# Debug files
357+
*.dSYM/
358+
*.su
359+
*.idb
360+
*.pdb
361+
362+
# Kernel Module Compile Results
363+
*.mod*
364+
*.cmd
365+
.tmp_versions/
366+
modules.order
367+
Module.symvers
368+
Mkfile.old
369+
dkms.conf

.whitesource

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"checkRunSettings": {
3+
"vulnerableCheckRunConclusionLevel": "failure"
4+
},
5+
"issueSettings": {
6+
"minSeverityLevel": "LOW"
7+
}
8+
}

BUILDING.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Building opensea-jsonoutput
2+
3+
Building opensea-jsonoutput is similar to the other opensea-libraries and similar to the build process for openSeaChest or the opensea-api.
4+
5+
Please review the [BUILDING.md](https://github.com/Seagate/openSeaChest/blob/develop/BUILDING.md) from the openSeaChest project for more information.

0 commit comments

Comments
 (0)