8 Star 24 Fork 4

citahub / cita

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CONTRIBUTING.md 5.85 KB
一键复制 编辑 原始数据 按行查看 历史

Contributing to CITA

First off, thanks for taking the time to contribute!

The following is a set of guidelines for contributing to CITA and its packages. These are mostly guidelines, not rules. Use your best judgement, and feel free to propose changes to this document in a pull request.

Table of Contents

Code of Conduct

How Can I Contribute?

Styleguides

How Can I Contribute'?'

Reporting Bugs

This section guides you through submitting a bug report for CITA. Following these guidelines helps maintainers understand your report :pencil:, reproduce the behavior :computer:, and find the related reports :mag_right:.

When creating a bug report, please include as many details as possible. Fill out the required template, the information it asks for helps others resolve issues faster.

How Do I Submit a Good Bug Report'?'

After you’ve determined which repository your bug is related to, create an issue on that repository and provide the following information by filling in the template.

Explain the problem and include additional details to help maintainers reproduce the problem:

  • Use a clear and descriptive title for the issue to identify the problem.
  • Describe the exact steps in which reproduce the problem in as many details as possible. For example, start by explaining how you started CITA, e.g. which command exactly you used in the terminal.
  • Provide specific examples to demonstrate the steps. For example, links to files that you use. If you’re providing snippets in the issue, use Markdown code blocks.
  • Describe the behavior you observed after following the steps above and point out what exactly is the problem with that behavior.
  • Explain which behavior you expected to see instead and why

Include details about your configuration and environment:

  • Which version of CITA?
  • Which version of the OS?
  • Are you running CITA in a virtual machine? If so, which VM software (including docker) and which operating systems and versions are used for the host and the guest?

Pull Request

Styleguides

Git Commit Messages

  • Limit the first line to 72 characters or less
  • Reference issues and pull requests liberally after the first line
  • When only changing documentation, include [skip ci] in the commit title
  • Consider starting the commit message with an applicable emoji:
    • :art: :art: when improving the format/structure of the code
    • :racehorse: :racehorse: when improving performance
    • :scroll: :scroll: when writing docs
    • :penguin: :penguin: when fixing something on Linux
    • :apple: :apple: when fixing something on macOS
    • :checkered_flag: :checkered_flag: when fixing something on Windows
    • :bug: :bug: when fixing a bug
    • :fire: :fire: when removing code or files
    • :green_heart: :green_heart: when fixing the CI build
    • :white_check_mark: :white_check_mark: when adding tests
    • :arrow_up: :arrow_up: when upgrading dependencies
    • :arrow_down: :arrow_down: when downgrading dependencies
    • :shirt: :shirt: when removing linter warnings

Rust Styleguide

All Rust must adhere to Rust Styleguide

Use Rust-clippy to improve your Rust codes by catching common mistakes.

Todo List

Code Docs Style

Here we use rustdoc as our code docs style standard.

Documentation Styleguide

Documents are essential parts to communicate with our users. We need to make our documents well-structured and readable. Everyone who contributes to the documents should have a strong responsibility for creating the great experience.

  • Everyone who modifies the documents needs to visualize the documents before making a pull request, in case there are some mistakes.

  • Separate Chinese and English characters by a blank space. [Chinese Version Only]

    • Normally we need to add a blank space before the first character of English words and after the last character of English words.
    • If the character before the first character of English words is punctuation mark, then we don’t need to add a blank space.
    • If the character after the last character of English words is punctuation mark, then we don’t need to add a blank space.

    Example:

    • Bad Style:

      我们采用 CITA 作为我们的blockchain基础设施服务。

    • Good Style:

      我们采用 CITA 作为我们的 blockchain 基础设施服务。

  • Separate Chinese characters and numbers by a blank space. [Chinese Version Only]

    • Detailed rules are same as above.

    Example:

    • Bad Style:

      CITA 的速度超乎想象,比我用过的其他10几个区块链服务都要快。

    • Good Style:

      CITA 的速度超乎想象,比我用过的其他 10 几个区块链服务都要快。

  • Please do remember to indent the contents below any ordered list or unordered list.

    Example:

    Bad Style

    Good Style

Rust
1
https://gitee.com/citahub/cita.git
git@gitee.com:citahub/cita.git
citahub
cita
cita
develop

搜索帮助