π Coding standardο
We strive to maintain a consistent style, both visually and implementation-wise. In order to achieve this we rely on tools to check and validate our code as we work, and we require that all those tools are used for CI to pass.
To have a smooth developer experience, we suggest you integrate these with your editor. Weβll provide some example configurations below; and we welcome contributions to these pages. However, we strive to avoid committing editor configurations to the repository, as thatβll more easily lead to mismatch between different editors - the description below is authoritative, not any specific editor configuration.
We also require that all commits are made using LF-only line endings. Windows users will need to configure using the below command, or set up their editor appropriately. This helps keep our code platform-generic, and reduces risk for spurious diffs or tools misbehaving.
$ git config --global core.autocrlf true
Toolsο
blackο
Black is an auto-formatter for Python, which mostly matches the PEP8 rules. We use black because it doesnβt support a lot of configuration, and will format for you - instead of just complaining. We do allow overrides to these styles, nor do we allow disabling of formatting anywhere.
To run black manually, you can use the command:
pdm run black pdm-plugin-torch tests
Which will format all code in those directories.
isortο
isort is another formatting tool, but deals only with sorting imports. Isort is configured to be consistent with Black from within pyproject.toml.
To run isort manually, you can use the command:
pdm run isort pdm-plugin-torch tests
Example configurationsο
emacsο
(use-package python-black
:demand t
:after python
:hook (python-mode . python-black-on-save-mode-enable-dwim))
(use-package python-isort
:demand t
:after python
:hook (python-mode . python-isort-on-save-mode))