Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (13 loc) · 790 Bytes

File metadata and controls

23 lines (13 loc) · 790 Bytes

Linting

To ensure unified standards in the project, the following linters are applied during commit.

🐍 Python conventions

To enforce unified standards in all python files, we use Flake8, which is a wrapper for the following three tools:

  • PyFlakes
  • pycodestyle
  • Ned Batchelder’s McCabe script

. More details on it can be found in the documentation of Flake8.

💬 Markdown Linter

To enforce unified standards in all markdown files, we use markdownlint-cli. More details on it can be found in the according documentation.

The markdown linter can fix some errors on its own by executing b5 markdown:fix.

🚨 Common Problems

Currently, we are not aware about any Problems.