Skip to content

Files

Latest commit

 

History

History
32 lines (30 loc) · 1.34 KB

CONTRIBUTING.rst

File metadata and controls

32 lines (30 loc) · 1.34 KB

# Getting Started If you would like to contribute, please follow the following steps: 1. Fork the project. 2. Clone your fork: git clone <your_username>/gVal 2. Create a feature branch: git checkout -b <your_feature>) 3. Commit your changes: git commit -m 'feature message' 4. Push to the branch: git push origin <your_username> <your_feature> 5. Open a pull request.

# Standards - [Numpy Style Docstrings](https://numpydoc.readthedocs.io/en/v1.1.0/format.html#documenting-modules) - [Python Type Hints](https://docs.python.org/3/library/typing.html) - [PEP8](https://pep8.org/) Styling (and [this](https://peps.python.org/pep-0008/))

# Tooling - Code Checking with [Flake8](https://github.com/PyCQA/flake8)

  • Combines PyFlakes, pycodestyle, and others for linting and style checking.