Updated Contributing Code (markdown)

ᴜɴᴋɴᴡᴏɴ 2020-02-22 13:17:16 +08:00
parent 184d2771ec
commit 89b7cad1ec

@ -2,38 +2,38 @@ This document describes requirements and best practices for contributing code (P
If you have/find any concern/problem with this document, **DO NOT** create an issue in this repository, instead, please go to [Gogs Discussion](https://discuss.gogs.io/) and discuss.
### Before You Start
### Before you start
##### Those We Do Accept
##### Those we do accept
1. Typos in template files or code comments.
2. Bug fixes or feature implementations (be sure to discuss first).
2. Issues that are labeled as [help wanted](https://github.com/gogits/gogs/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) (be sure to claim first to prevent two people work on the same thing).
2. Issues that are labeled as [help wanted](https://github.com/gogs/gogs/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) and [good first issue](https://github.com/gogs/gogs/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) (be sure to claim first to prevent two people work on the same thing!).
##### Those We Do Not Accept
##### Those we do not accept
1. We do not accept pull requests for locale files (`conf/locale_xx-XX.ini` files), please read the [guide](https://gogs.io/docs/features/i18n), except for `conf/locale_en-US.ini` file.
2. Docker compose file.
3. Pull request with a lot of changed files; we have rights to deny any pull requests that we considered too large to take time to review.
##### Make A Claim
##### Make a claim
Write a comment to the corresponding thread to claim you're working on it, so people wouldn't have conflict on what they're working on.
### Coding Guidelines
### Coding guidelines
1. Please follow the general [Go Code Convention](https://github.com/Unknwon/go-code-convention/blob/master/en-US/README.md) and [Gogs Coding Guidelines](https://www.notion.so/Coding-Guidelines-15a29828afc34409b50e030a20120722).
2. All `.go` files must be formatted with `gofmt` (most of Go editors should be already possible to format on save).
1. Please follow the Sourcegraph's [Go style guide](https://about.sourcegraph.com/handbook/engineering/go_style_guide).
2. All `.go` files must be formatted with `gofmt`.
3. All `.less` and `.tmpl` files must use **1 tab** as indention.
4. **NO** modifications to `.css` files should be done by hand, `.css` files are all generated by `.less` files. Normally you can achieve this by executing `make bindata`.
4. **NO** direct modifications to `.css` files, `.css` files are all generated by `.less` files. Normally you can achieve this by executing `make less`.
### For UI Changes
### For UI changes
1. Please use standard [Semantic UI](http://semantic-ui.com/) classes as much as possible to avoid editing `.less` files.
2. Please attach corresponding screenshots for all representative pages that is affected by your changes.
3. If you need to add new locale strings, you **ONLY** need to care about `conf/locale_en-US.ini` file, **DO NOT** touch all the other locales files.
### Final Checks
### Final checks
1. There is **no guarantees** that your pull request will be merged.
2. Please expect code review being **VERY** strict, be prepared for benefiting future of this project.