Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/pages/linting.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@ for some of these.
| Name | Short description | 🚦 |
| ---------------------------------------------- | ----------------------------------------------------------------------------- | :-----------------------------------------: |
| [mypy](https://mypy.readthedocs.io/en/stable/) | Static type checker, won't fail if no typing but will if typing is incorrect. | <span class="label label-green">Best</span> |

### Dependency checking

| Name | Short description | 🚦 |
| ----------------------------------------------------------------- | ---------------------------------------------------------------- | :------------------------------------------: |
| [deptry](https://deptry.com/) | Checks for unused dependencies and undeclared dependencies. | <span class="label label-yellow">Good</span> |
| [fawltydeps](https://tweag.github.io/FawltyDeps/) | Checks for unused dependencies and undeclared dependencies. | <span class="label label-yellow">Good</span> |
| [pip-check-reqs](https://github.com/adamtheturtle/pip-check-reqs) | Checks requirements file (requires converting `pyproject.toml`). | <span class="label label-yellow">Good</span> |
Loading