diff options
author | zeripath <art27@cantab.net> | 2021-12-02 20:58:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-02 21:58:08 +0100 |
commit | 957c3fcb5949b3f7ee348d3f7f609826cedb0e8b (patch) | |
tree | bb5cf64f8226989a61ad55d1e3799e813cf0a5ea /vendor/github.com/go-chi/chi/CONTRIBUTING.md | |
parent | 4646c7c52d453dcc817f8e14b991de0e4f67b492 (diff) | |
download | gitea-957c3fcb5949b3f7ee348d3f7f609826cedb0e8b.tar.gz gitea-957c3fcb5949b3f7ee348d3f7f609826cedb0e8b.zip |
Update chi/middleware to chi/v5/middleware (#17888)
Fix #17880
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'vendor/github.com/go-chi/chi/CONTRIBUTING.md')
-rw-r--r-- | vendor/github.com/go-chi/chi/CONTRIBUTING.md | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/github.com/go-chi/chi/CONTRIBUTING.md b/vendor/github.com/go-chi/chi/CONTRIBUTING.md deleted file mode 100644 index c0ac2dfe85..0000000000 --- a/vendor/github.com/go-chi/chi/CONTRIBUTING.md +++ /dev/null @@ -1,31 +0,0 @@ -# Contributing - -## Prerequisites - -1. [Install Go][go-install]. -2. Download the sources and switch the working directory: - - ```bash - go get -u -d github.com/go-chi/chi - cd $GOPATH/src/github.com/go-chi/chi - ``` - -## Submitting a Pull Request - -A typical workflow is: - -1. [Fork the repository.][fork] [This tip maybe also helpful.][go-fork-tip] -2. [Create a topic branch.][branch] -3. Add tests for your change. -4. Run `go test`. If your tests pass, return to the step 3. -5. Implement the change and ensure the steps from the previous step pass. -6. Run `goimports -w .`, to ensure the new code conforms to Go formatting guideline. -7. [Add, commit and push your changes.][git-help] -8. [Submit a pull request.][pull-req] - -[go-install]: https://golang.org/doc/install -[go-fork-tip]: http://blog.campoy.cat/2014/03/github-and-go-forking-pull-requests-and.html -[fork]: https://help.github.com/articles/fork-a-repo -[branch]: http://learn.github.com/p/branching.html -[git-help]: https://guides.github.com -[pull-req]: https://help.github.com/articles/using-pull-requests |