-
- Downloads
Merge pull request #6 from zendril/master
Implement yaml support for schema and target doc
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- README.md 16 additions, 3 deletionsREADME.md
- go.mod 3 additions, 1 deletiongo.mod
- go.sum 8 additions, 2 deletionsgo.sum
- main.go 60 additions, 25 deletionsmain.go
- main_test.go 81 additions, 7 deletionsmain_test.go
- main_windows_test.go 0 additions, 44 deletionsmain_windows_test.go
- testdata/data-error.yml 1 addition, 0 deletionstestdata/data-error.yml
- testdata/data-fail.yml 2 additions, 0 deletionstestdata/data-fail.yml
- testdata/data-pass.yml 3 additions, 0 deletionstestdata/data-pass.yml
- testdata/schema.yml 7 additions, 0 deletionstestdata/schema.yml
... | @@ -3,7 +3,9 @@ module github.com/neilpa/yajsv | ... | @@ -3,7 +3,9 @@ module github.com/neilpa/yajsv |
go 1.12 | go 1.12 | ||
require ( | require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | |||
github.com/ghodss/yaml v1.0.0 | |||
github.com/mitchellh/go-homedir v1.1.0 | github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/xeipuuv/gojsonschema v1.2.0 | github.com/xeipuuv/gojsonschema v1.2.0 | ||
neilpa.me/go-x v0.1.0 | gopkg.in/yaml.v2 v2.2.8 // indirect | ||
) | ) |
main_windows_test.go
deleted
100644 → 0
testdata/data-error.yml
0 → 100644
testdata/data-fail.yml
0 → 100644
testdata/data-pass.yml
0 → 100644
testdata/schema.yml
0 → 100644
Please register or sign in to comment