Skip to content

Commit 8c43e0d

Browse files
Batalexlwasser
authored andcommitted
docs: Uppercase Ruff
1 parent 0606648 commit 8c43e0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package-structure-code/code-style-linting-format.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ some exceptions. A few examples of those exceptions are below:
9494

9595
- Black defaults to a line length of 88 (79 + 10%) rather than the 79 character `PEP 8` specification. However, line length is a setting can be manually overwritten in your Black configuration.
9696
- Black and Blue will not adjust line length in your comments or docstrings.
97-
- Neither tool will review and fix import order (you need _isort_ or _ruff_ to do that - see below).
97+
- Neither tool will review and fix import order (you need _isort_ or _Ruff_ to do that - see below).
9898

9999
Blue addresses a few format decisions in Black that some maintainers do not like.
100100
[You can compare the differences here](https://blue.readthedocs.io/en/latest/#so-what-s-different) and decide which tool you prefer!
@@ -199,9 +199,9 @@ from stravalib import exc
199199
from stravalib import unithelper as uh
200200
```
201201

202-
### ruff
202+
### Ruff
203203

204-
[ruff](https://beta.ruff.rs) is a new addition to the code quality ecosystem,
204+
[Ruff](https://beta.ruff.rs) is a new addition to the code quality ecosystem,
205205
gaining some traction since its release.
206206
`ruff` is a linter for Python, aiming to replace several tools behind a single interface.
207207
As such, `ruff` can be used instead of `flake8` and `isort`.

0 commit comments

Comments
 (0)