Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.07 KB

coding-conventions.rst

File metadata and controls

39 lines (26 loc) · 1.07 KB

Coding conventions

The PyInstaller project follows the 8 Style Guide for Python Code for new code. It uses yapf to do the bulk of the formatting (mostly putting spaces in the correct places) automatically and flake8 to validate 8 rules which yapf doesn't cover.

Before submitting changes to PyInstaller, please check your code with both tools.

To install them run:

pip install flake8 yapf==0.32.0 toml

Reformat your code automatically with yapf:

yapf -rip .

Then manually adjust your code based on any suggestions given by flake8:

git diff -U0 last-commit-id-which-you-did-not-write -- | flake8 --diff -

Please abstain from reformatting existing code, even it it doesn't follow PEP 8. We will not accept reformatting changes since they make it harder to review the changes and to follow changes in the long run. For a complete rationale please see 2727.