Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Black Logo

Objective

Run Black on your Python code to ensure it complies with the coding style guide. Black is configured with --check --diff --quiet rules.

Global Configuration of Black

To add configuration to black shared with any other usage of black (such as manual run, pre-commit, etc), you can use pyproject.toml configuration file. Learn more about pyproject configuration files.

See this example:

[tool.black]
line-length = 100

How to use it

  1. Configure the black section of pyproject.toml in your repository's with your desired rules.
  2. Include the Black template in your CI/CD configuration (see quick use above).
  3. If you need to customize the job, check the jobs customization.

Add a Code style: black badge to your project README.md

To display the use of Black in your project, you can add the following badge to your README.md:

<a href="https://github.com/psf/black">
    <img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg">
</a>