We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e7e203 commit 286be72Copy full SHA for 286be72
1 file changed
template/{% if AddDevDoc %}README.dev.md{% endif %}.jinja
@@ -65,7 +65,7 @@ coverage report
65
{%- if AddLinting -%}
66
## Running linters locally
67
68
-For linting and sorting imports we will use [ruff](https://beta.ruff.rs/docs/). Running the linters requires an
+For linting and sorting imports we will use [ruff](https://docs.astral.sh/ruff/). Running the linters requires an
69
activated virtual environment with the development tools installed.
70
71
```shell
@@ -76,7 +76,11 @@ ruff check .
76
ruff check . --fix
77
```
78
79
-To fix readability of your code style you can use [yapf](https://github.com/google/yapf).
+It also provides a command to fix readability of your code style:
80
+
81
+```shell
82
+ruff format .
83
+```
84
{%- endif -%}
85
86
{%- if AddPreCommit -%}
0 commit comments