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
Commit 2cf68ac9 authored by Dorian Turba's avatar Dorian Turba
Browse files

fix quote links for badges

parent 25d46ee2
No related tags found
No related merge requests found
Pipeline #23626 passed
...@@ -19,12 +19,10 @@ pre-commit, etc), you can use `pyproject.toml` configuration file. Learn more ...@@ -19,12 +19,10 @@ pre-commit, etc), you can use `pyproject.toml` configuration file. Learn more
about [pyproject](https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/) about [pyproject](https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/)
configuration files. configuration files.
## Add a [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) badge to your project README.md ## Add a [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/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: To display the use of Black in your project, you can add the following badge to your README.md:
```markdown ```markdown
<a href="https://github.com/psf/black"> [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
<img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"> ```
</a>
```
\ No newline at end of file
...@@ -17,12 +17,10 @@ To add configuration to `flake8` shared with any other usage of flake8 (such as ...@@ -17,12 +17,10 @@ To add configuration to `flake8` shared with any other usage of flake8 (such as
pre-commit, etc), you can use `.flake8` configuration file. Learn more pre-commit, etc), you can use `.flake8` configuration file. Learn more
about [flake8 configuration](https://flake8.pycqa.org/en/latest/user/configuration.html) files. about [flake8 configuration](https://flake8.pycqa.org/en/latest/user/configuration.html) files.
## Add a [![Code style: Flake8](https://img.shields.io/badge/Flake8-checks-blue)](https://flake8.pycqa.org/) badge to your project README.md ## Add a [![Flake8](https://img.shields.io/badge/Linter-Flake8-blue)](https://flake8.pycqa.org/) badge to your project README.md
To display the use of Flake8 in your project, you can add the following badge to your README.md: To display the use of Flake8 in your project, you can add the following badge to your README.md:
```markdown ```markdown
<a href="https://flake8.pycqa.org/"> [![Flake8](https://img.shields.io/badge/Linter-Flake8-blue)](https://flake8.pycqa.org/)
<img alt="Code style: Flake8" src="https://img.shields.io/badge/Flake8-checks-blue">
</a>
``` ```
...@@ -19,12 +19,10 @@ pre-commit, etc), you can use `pyproject.toml` configuration file or a dedicated ...@@ -19,12 +19,10 @@ pre-commit, etc), you can use `pyproject.toml` configuration file or a dedicated
more about [isort configuration](https://pycqa.github.io/isort/docs/configuration/config_files.html) more about [isort configuration](https://pycqa.github.io/isort/docs/configuration/config_files.html)
files. files.
## Add an [![Imports: isort](https://img.shields.io/badge/Imports-isort-yellow)](https://pycqa.github.io/isort/) badge to your project README.md ## Add a [![Imports: isort](https://img.shields.io/badge/imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) badge to your project README.md
To display the use of isort in your project, you can add the following badge to your README.md: To display the use of isort in your project, you can add the following badge to your README.md:
```markdown ```markdown
<a href="https://pycqa.github.io/isort/"> [![Imports: isort](https://img.shields.io/badge/imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
<img alt="Imports: isort" src="https://img.shields.io/badge/Imports-isort-yellow">
</a>
``` ```
...@@ -18,7 +18,7 @@ To add configuration to `mypy` shared with any other usage of mypy (such as manu ...@@ -18,7 +18,7 @@ To add configuration to `mypy` shared with any other usage of mypy (such as manu
etc), you can use `mypy.ini`, `setup.cfg` or `pyproject.toml` configuration file. Learn more etc), you can use `mypy.ini`, `setup.cfg` or `pyproject.toml` configuration file. Learn more
about [mypy configuration](https://mypy.readthedocs.io/en/stable/config_file.html) files. about [mypy configuration](https://mypy.readthedocs.io/en/stable/config_file.html) files.
## Add a [![Type Checked: mypy](https://img.shields.io/badge/mypy-checks-blue)](https://mypy.readthedocs.io/) badge to your project README.md ## Add a [![Checked with mypy](https://img.shields.io/badge/mypy-checked-blue)](https://mypy.readthedocs.io/) badge to your project README.md
To display the use of mypy in your project, you can add the following badge to your README.md: To display the use of mypy in your project, you can add the following badge to your README.md:
......
...@@ -19,12 +19,16 @@ pre-commit, etc), you can use a `pyproject.toml`, `ruff.toml`, or `.ruff.toml` c ...@@ -19,12 +19,16 @@ pre-commit, etc), you can use a `pyproject.toml`, `ruff.toml`, or `.ruff.toml` c
your project's root directory. Learn more your project's root directory. Learn more
about [ruff configuration](https://beta.ruff.rs/docs/configuration/) files. about [ruff configuration](https://beta.ruff.rs/docs/configuration/) files.
## Add a [![Code style: Ruff](https://img.shields.io/badge/Ruff-Linter-blue)](https://github.com/astral-sh/ruff) badge to your project README.md ## Add a [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) badge to your project README.md
To display the use of Ruff in your project, you can add the following badge to your README.md: To display the use of Ruff in your project, you can add the following badge to your README.md:
```markdown ```markdown
<a href="https://github.com/ruffle-rs/ruffle"> [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
<img alt="Code style: Ruff" src="https://img.shields.io/badge/Ruff-Linter-blue"> ```
</a>
A more "classic" version of the badge ([![Code style: Ruff](https://img.shields.io/badge/Linter-Ruff-blue)](https://github.com/astral-sh/ruff)) is also available:
```markdown
[![Ruff](https://img.shields.io/badge/Linter-Ruff-blue)](https://github.com/astral-sh/ruff)
``` ```
...@@ -54,7 +54,5 @@ https://docs.r2devops.io/get-started/use-templates/#multiple-usage-of-the-same-j ...@@ -54,7 +54,5 @@ https://docs.r2devops.io/get-started/use-templates/#multiple-usage-of-the-same-j
To display the use of pytest in your project, you can add the following badge to your README.md: To display the use of pytest in your project, you can add the following badge to your README.md:
```markdown ```markdown
<a href="https://docs.pytest.org/en/latest/"> [![Tested with pytest](https://img.shields.io/badge/Tested%20with-pytest-green)](https://docs.pytest.org/en/latest/)
<img alt="Tested with pytest" src="https://img.shields.io/badge/Tested%20with-pytest-green">
</a>
``` ```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment