Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 1.53 KB

CONTRIBUTING.md

File metadata and controls

21 lines (14 loc) · 1.53 KB

Aleth Contributing and Review Guidelines

  1. All submitted Pull Requests are assumed to be ready for review unless they are labeled with [in progress] or have "[WIP]" in title.

  2. All submitted Pull Requests which change Aleth in a way that is visible to users (e.g. new features, bug fixes, significant logging changes) should include an entry in CHANGELOG.md in the unreleased version section. Please categorize your entry appropriately and group it with other entries of the same category. Please see the following for details on categories and how to make a good changelog entry: https://keepachangelog.com/en/1.0.0/

  3. Code formatting rules are described by the Clang-Format Style Options file .clang-format. Please use the clang-format (version 5.0 or higher recommended) tool to format your code changes accordingly. git-clang-format tool is useful to limit reformatting to your changes only:

    git clang-format          # to reformat the changes in the staging area and put the result into working directory
    git clang-format -f       # to reformat the changes in the working directory
    git clang-format <commit> # to reformat commits between specified commit and HEAD