Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 515 Bytes

File metadata and controls

33 lines (23 loc) · 515 Bytes

Contributing to ComfyUI_pytorch360convert

This project uses simple linting guidelines, as you'll see below.

Linting

Linting is simple to perform.

pip install black flake8 mypy ufmt

Linting:

cd ComfyUI_pytorch360convert
black .
ufmt format .
cd ..

Checking:

cd ComfyUI_pytorch360convert
black --check --diff .
flake8 . --ignore=E203,W503 --max-line-length=88 --exclude build,dist
ufmt check .
mypy . --ignore-missing-imports --allow-redefinition --explicit-package-bases
cd ..