diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index be104b5dc2..9941e08dd5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1 +1,7 @@ -See: https://github.com/nirmata/kyverno#contributing +# Contributing to Kyverno + +## Code Style + +We follow the community provided standard [code structure](https://github.com/golang-standards/project-layout). + +See : https://github.com/nirmata/kyverno#contributing diff --git a/README.md b/README.md index df3ec092d1..2335a3b78f 100644 --- a/README.md +++ b/README.md @@ -171,5 +171,6 @@ See [Milestones](https://github.com/nirmata/kyverno/milestones) and [Issues](htt Thanks for your interest in contributing! * Please review and agree to abide with the [Code of Conduct](/CODE_OF_CONDUCT.md) before contributing. + * We encourage all contributions and encourage you to read our [contribution guidelines](./CONTRIBUTING.md). * See the [Wiki](https://github.com/nirmata/kyverno/wiki) for developer documentation. * Browse through the [open issues](https://github.com/nirmata/kyverno/issues) diff --git a/data/swaggerDoc.go b/api/swaggerDoc.go similarity index 100% rename from data/swaggerDoc.go rename to api/swaggerDoc.go diff --git a/pkg/openapi/validation.go b/pkg/openapi/validation.go index 71b8fa4b43..44e22123d0 100644 --- a/pkg/openapi/validation.go +++ b/pkg/openapi/validation.go @@ -6,7 +6,7 @@ import ( "strings" "sync" - "github.com/nirmata/kyverno/data" + data "github.com/nirmata/kyverno/api" "github.com/golang/glog"