delta/CONTRIBUTING.md
Marco Ieni 248b1a7e18
Create CONTRIBUTING.md (#385)
* Create CONTRIBUTING.md

* Update CONTRIBUTING.md
2020-11-20 20:14:50 -05:00

731 B

Contribution guidelines

First off, thank you for considering contributing to delta.

If your contribution is not straightforward, please first discuss the change you wish to make by creating a new issue before making the change.

Developing

Set up

This is no different than other Rust projects.

git clone https://github.com/dandavison/delta/
cd delta
cargo build

Useful Commands

  • Build release version:

    cargo build --release
    
  • Run Clippy:

    cargo clippy
    
  • Run all tests:

    make test
    
  • Check to see if there are code formatting issues

    cargo fmt -- --check
    
  • Format the code in the project

    cargo fmt