You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package-structure-code/code-style-linting-format.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ some exceptions. A few examples of those exceptions are below:
94
94
95
95
- 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.
96
96
- 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).
98
98
99
99
Blue addresses a few format decisions in Black that some maintainers do not like.
100
100
[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
199
199
from stravalib import unithelper as uh
200
200
```
201
201
202
-
### ruff
202
+
### Ruff
203
203
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,
205
205
gaining some traction since its release.
206
206
`ruff` is a linter for Python, aiming to replace several tools behind a single interface.
207
207
As such, `ruff` can be used instead of `flake8` and `isort`.
0 commit comments