Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 433 Bytes

File metadata and controls

33 lines (24 loc) · 433 Bytes

Code Checking Workflow

  • pre-commit/black/pylint code quality
  • mypy typing
  • pylint code quality
  • sphinx doc building

pre-commit/black

pre-commit run --all-files
black --diff .\file.py
pylint .\dir\

mypy

mypy .\adafruit_macropad.py --disallow-untyped-defs --ignore-missing-imports

sphinx

cd docs
sphinx-build -E -W -b html . _build/html