Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 14abf22

Browse files
committed
Update docs about ruff vs. flake8.
1 parent 7010a3d commit 14abf22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/code_style.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The necessary tools are:
1010

1111
- [black](https://black.readthedocs.io/en/stable/), a source code formatter;
1212
- [isort](https://pycqa.github.io/isort/), which organises each file's imports;
13-
- [flake8](https://flake8.pycqa.org/en/latest/), which can spot common errors; and
13+
- [ruff](https://github.com/charliermarsh/ruff), which can spot common errors; and
1414
- [mypy](https://mypy.readthedocs.io/en/stable/), a type checker.
1515

1616
Install them with:
@@ -28,7 +28,7 @@ scripts-dev/lint.sh
2828
It's worth noting that modern IDEs and text editors can run these tools
2929
automatically on save. It may be worth looking into whether this
3030
functionality is supported in your editor for a more convenient
31-
development workflow. It is not, however, recommended to run `flake8` or `mypy`
31+
development workflow. It is not, however, recommended to run `mypy`
3232
on save as they take a while and can be very resource intensive.
3333

3434
## General rules

0 commit comments

Comments
 (0)