We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5649d62 commit b610989Copy full SHA for b610989
CONTRIBUTING.md
@@ -31,3 +31,13 @@ To run the tests locally, you can simply run `pytest`.
31
In CI, we run tests using [nox](https://nox.thea.codes/en/stable/index.html),
32
which runs the test multiple times using different package versions. Run
33
`poetry run nox` to run the entire test suite.
34
+
35
+### Pre-commit, linting
36
37
+We use [pre-commit](https://pre-commit.com/) to manage git pre-commit hooks. This
38
+will fail linting locally so you can see errors before they run in CI. Run `pre-commit install`
39
+to install the hooks.
40
41
+To run them manually, run `pre-commit run --all-files`.
42
43
+To skip them when committing, run `git commit` with the `--no-verify` flag.
0 commit comments