Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 539 Bytes

File metadata and controls

23 lines (16 loc) · 539 Bytes

Contributing and checking your code

Coding style in this repository is checked by means of pre-commit, and a selection of useful tools. Before committing your changes, please install pre-commit

python3 -m pip install pre-commit

and install the git hooks with

pre-commit install

Changes are then checked against the coding style toolchain upon committing. You may also run pre-commit on all files in the repository with

pre-commit run --all-files

before committing.