Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1016 Bytes

CONTRIBUTING.md

File metadata and controls

42 lines (28 loc) · 1016 Bytes

getting started

with asdf

tools needed

setup

  1. install asdf
  2. run asdf install in this directory to install all needed tools
  3. run just setup to install the pre-commit hooks etc.

pre-commit

  1. run just check to lint the files and auto-format them. you can optionally run just format and just lint as a single action.
  2. fix the issues which ruff reports
  3. run just build to check if it builds correctly
  4. commit changes

manual

tools needed

setup

  1. install just
  2. run just setup to install the pre-commit hooks etc.

pre-commit

  1. run hatch run lint:fmt to lint the files and auto-format them.
  2. fix the issues which ruff reports
  3. run hatch build --clean to check if it builds correctly
  4. commit changes