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: CONTRIBUTING.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,3 +122,49 @@ uv run nox --session coverage
122
122
```
123
123
124
124
All pull requests must include tests to maintain 100% coverage. Coverage configuration can be found in the `[tools.coverage.*]` sections of [`pyproject.toml`](pyproject.toml).
125
+
126
+
## Linting and Formatting
127
+
128
+
This project enforces code quality standards using [`pre-commit`](https://github.com/pre-commit/pre-commit).
129
+
130
+
To run all formatters and linters:
131
+
132
+
```bash
133
+
uv run nox --session lint
134
+
# or
135
+
just lint
136
+
```
137
+
138
+
The following checks are run:
139
+
140
+
-[ruff](https://github.com/astral-sh/ruff) - Fast Python linter and formatter
141
+
- Code formatting for Python files in documentation ([blacken-docs](https://github.com/adamchainz/blacken-docs))
0 commit comments