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
Resolves#525.
Note: it's the best because to my knowledge it's the only tool that does
what it does...
> It is the single recommended tool for a given purpose.
Copy file name to clipboardExpand all lines: docs/pages/linting.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ for some of these.
17
17
|[ruff-format](https://github.com/astral-sh/ruff)| A drop-in replacement for `black` (and also super fast). A nice "no-need to think" code formatter. If you have your own opinions about code style, you might not like this. | <spanclass="label label-green">Best</span> |
18
18
|[ruff](https://github.com/astral-sh/ruff)| A fast linter which incorporates a range of other linters. Notably [isort](https://pycqa.github.io/isort/) can be included as a [ruff rule](https://docs.astral.sh/ruff/rules/) (which we recommend). | <spanclass="label label-green">Best</span> |
19
19
|[toml-sort](https://github.com/pappasam/toml-sort)| Sorts TOML files which are now part of PEP 8. | <spanclass="label label-green">Best</span> |
20
+
|[fawltydeps](https://tweag.github.io/FawltyDeps/)| Linter which aims to find unused dependencies and undeclared dependencies. | <spanclass="label label-green">Best</span> |
20
21
|[autopep8](https://github.com/hhatto/autopep8)| Formatter which conforms to PEP 8. | <spanclass="label label-yellow">Good</span> |
21
22
|[black](https://black.readthedocs.io/en/stable/)| Opinionated formatter, defaults to 88 characters per line. Widely used, but we now recommend `ruff-format` in its place. | <spanclass="label label-yellow">Good</span> |
22
23
|[isort](https://pycqa.github.io/isort/)| Sorts imports alphabetically, splits into first/third party, works on python & cython code. We recommend this, but it can be included in `ruff`, which is simpler. | <spanclass="label label-yellow">Good</span> |
0 commit comments