Gruff
Gruff is an opinionated, deterministic maintainability linter for Python. It complements Ruff with project policies that make agent-assisted code easier to understand and review; it does not infer who or what wrote the code.
Installation
Requires Python 3.10 or later.
pip install gruff
Or with uv:
uv tool install gruff
Verify it works:
gruff --version
[!TIP] To try the latest development version (the head of
mainon GitHub) before it is published:uv tool install git+https://github.com/wkentaro/gruff
Quick start
Enable every Gruff rule in pyproject.toml:
[tool.gruff.lint]
select = ["GR"]
Then check the current directory:
gruff check .
All rules are opt-in. Use an exact code such as GR001 to adopt rules individually; GR enables every Gruff rule. A check with no enabled rules succeeds but warns that it performed no policy analysis.
Rules at a glance
The first release tests five theses: inputs are easier to trace when definitions declare how callers pass them, non-public behavior is easier to review when callers supply every value, package initializer manifests are easier to review when every public import path defines __all__, constants are easier to review when uppercase names and Final annotations always appear together, and non-public definitions are easier to understand when their names carry their purpose.
| Code | Rule | Policy |
|---|---|---|
| GR001 | explicit-non-public-input-conventions |
Every fixed input to a non-public callable has an explicit calling convention. |
| GR002 | required-non-public-inputs |
Callers supply every fixed input to non-public callables. |
| GR003 | package-dunder-all |
Every public package import path defines __all__. |
| GR004 | final-constants |
Uppercase names and Final annotations appear together. |
| GR005 | explicit-public-input-conventions |
Every fixed input to a public callable has an explicit calling convention. |
| GR006 | no-non-public-docstrings |
Non-public definitions carry their purpose in their names instead of docstrings. |
Configuration and CLI
Gruff reads configuration only from pyproject.toml:
[tool.gruff]
output-format = "full"
[tool.gruff.lint]
select = ["GR001", "GR002", "GR003", "GR004", "GR005", "GR006"]
ignore = []
per-file-ignores = { "callbacks.py" = ["GR001"] }
output-format accepts full, concise, json, or github. Rule selectors accept an exact code, the GR prefix, or ALL; the more specific selector wins when select and ignore overlap, and ignore wins ties.
Command-line options override configuration:
gruff check .
gruff check --select GR001,GR002,GR005 .
gruff check --ignore GR004 .
gruff check --output-format github .
gruff check --config path/to/pyproject.toml .
gruff check --isolated --select GR .
Pass files or directories as paths. Directory discovery checks .py, .pyi, and .pyw files and respects Git ignore files. Run gruff check --help for the complete command reference.
Lint findings, including invalid Python syntax, exit with status 1. Configuration, I/O, and internal failures exit with status 2. Gruff does not rewrite source code in the first release.
Rule reference
explicit-non-public-input-conventions (GR001)
Flags each fixed caller-supplied input to a non-public module-level function or method that is positional-or-keyword. Positional-only (/) and keyword-only (*) inputs declare an explicit calling convention and are accepted; implicit method receivers and variadic parameters are excluded.
Before → after:
-def _resize_image(data: bytes, width: int) -> bytes:
+def _resize_image(data: bytes, /, *, width: int) -> bytes:
return resize(data, width=width)
def make_thumbnail(data: bytes, /) -> bytes:
return _resize_image(data, width=512)
A non-public definition starts with an underscore and does not end with one. This includes _name and __name spellings; double-leading names are name-mangled in class scope. Ordinary, trailing-underscore, sunder, and dunder definitions are excluded.
required-non-public-inputs (GR002)
Flags each fixed caller-supplied input to a non-public module-level function or method that has a default; implicit method receivers and variadic parameters are excluded.
Before → after:
-def _resize_image(*, data: bytes, width: int = 512) -> bytes:
+def _resize_image(*, data: bytes, width: int) -> bytes:
return resize(data, width=width)
def make_thumbnail(data: bytes, /) -> bytes:
- return _resize_image(data=data)
+ return _resize_image(data=data, width=512)
Choose the input shape before suppressing the rule. If callers never vary a value, remove the input and keep the value inside the non-public definition instead of making every caller repeat it. If callers vary the value, keep the input required and have callers supply it explicitly. Reserve a default and GR002 suppression for meaningful semantic policy that would otherwise be duplicated across callers.
package-dunder-all (GR003)
Flags a package initializer when a successfully completing import path leaves a binding whose name does not start with an underscore without __all__. The rule covers __init__.py and __init__.pyi, including bindings in module-level control flow, and reports at most one finding per file. Empty, underscore-prefixed-only, type-checking-only, and statically false paths do not require a manifest.
Before → after:
from .client import Client
from .errors import GruffError
+__all__ = ["Client", "GruffError"]
final-constants (GR004)
Flags simple-name assignments when an uppercase name and a Final annotation do not appear together. The rule applies in module, class, and function scopes, including nested control flow. Enum members, type aliases, chained and unpacking assignments, augmented assignments, loop and context-manager targets, attributes, subscripts, and imports are excluded.
Before → after:
from typing import Final
-THUMBNAIL_WIDTH = 512
-image_format: Final = "png"
+THUMBNAIL_WIDTH: Final = 512
+IMAGE_FORMAT: Final = "png"
Final prevents type checkers from accepting rebinding; it does not make mutable contents immutable. For example, a Final[list[str]] still permits append. Use an immutable value when the contents must not change.
explicit-public-input-conventions (GR005)
Flags each fixed caller-supplied input to a public module-level function or method that is positional-or-keyword. It accepts and excludes the same input shapes as GR001.
For this syntactic policy, public definitions are the complement of non-public definitions. They include ordinary names, public names with a trailing underscore, framework or protocol sunder hooks, and system-defined dunder methods; the label does not infer whether an interface is documented or exported.
Before → after:
-def resize_image(data: bytes, width: int) -> bytes:
+def resize_image(data: bytes, /, *, width: int) -> bytes:
return resize(data, width=width)
For established libraries, enable GR001 first. Before enabling GR005, review public and protocol definitions for downstream compatibility; migrate compatible signatures and suppress contracts that must still accept both positional and keyword calls. GR and ALL enable both rules for greenfield projects and completed migrations.
no-non-public-docstrings (GR006)
Flags a non-public module-level function or method when its first body statement is a string literal. Remove a redundant docstring; if the definition becomes unclear without it, rename the function or method. Keep non-obvious reasoning as ordinary comments inside the definition.
Before → after:
def _load_config(*, path: Path) -> Config:
- """Load configuration from a path."""
return Config.parse(path.read_text())
GR006 uses the same non-public definition boundary as GR001 and GR002. It reports the docstring literal, so an intentional exception places # noqa: GR006 after a single-line docstring or after the closing quotes of a multiline docstring.
Exceptions
Use a positional-only marker when an external contract intentionally accepts positional calls. Suppress GR001 or GR005 only when the contract must accept both positional and keyword calls. Suppress GR002 only when a default centralizes meaningful semantic policy that callers would otherwise duplicate. Suppress GR004 when a binding intentionally follows an external convention:
def _format_cost(value: float, /) -> str:
return f"${value:.2f}"
def format_cost_compat(value: float) -> str: # noqa: GR005 -- contract accepts both call styles
return f"${value:.2f}"
def _fetch(*, url: str, timeout: float = 30.0) -> bytes: # noqa: GR002 -- service timeout policy
return fetch(url, timeout=timeout)
EXTERNAL_NAME = 1 # noqa: GR004 -- public protocol spelling
def _documented_hook() -> None:
"""Required by the framework contract.""" # noqa: GR006 -- inherited documentation contract
For a dynamic package manifest, suppress GR003 on the reported binding whose name does not start with an underscore and state why deterministic source analysis does not apply:
public = load_exports() # noqa: GR003 -- exec() defines __all__ below
Prefer an inline suppression because it keeps the exception next to its reason. For files made entirely of protocol implementations, use a per-file ignore instead.
Recommended Ruff pairing
Gruff does not duplicate checks that Ruff already provides. These Ruff rules extend the same theses to code Gruff does not cover:
[tool.ruff.lint]
extend-select = ["ARG", "FBT", "B006", "B008", "PLR2004", "RUF012", "RUF022"]
F401 and F822 are in Ruff's default rule set; the pairing below assumes they stay enabled.
Callable inputs (GR001, GR002, GR005)
ARG flags unused function and method arguments, a shape none of GR001, GR002, or GR005 inspects:
-def _resize_image(*, data: bytes, width: int, legacy: bool) -> bytes:
+def _resize_image(*, data: bytes, width: int) -> bytes:
return resize(data, width=width)
Together, GR001 and GR005 make every definition declare each input as positional-only or keyword-only. FBT001 and FBT002 go further for booleans, which stay ambiguous at a call site even when Gruff accepts them as positional-only:
-def resize_image(data: bytes, keep_aspect: bool) -> bytes:
+def resize_image(data: bytes, /, *, keep_aspect: bool) -> bytes:
return resize(data, keep_aspect=keep_aspect)
GR002 removes defaults from non-public callables; B006 and B008 catch shared mutable defaults and import-time call defaults on the public callables that keep theirs:
-def make_thumbnails(data: bytes, /, *, widths: list[int] = []) -> list[bytes]:
+def make_thumbnails(data: bytes, /, *, widths: list[int] | None = None) -> list[bytes]:
-def fetch_image(*, client: Client = Client()) -> bytes:
+def fetch_image(*, client: Client | None = None) -> bytes:
Package manifests (GR003)
GR003 only requires the manifest to exist. Once it does, F401 flags re-exports missing from it:
from .client import Client
from .errors import GruffError
-__all__ = ["Client"]
+__all__ = ["Client", "GruffError"]
F822 finds names in the manifest that are not defined:
-__all__ = ["Client", "GruffErorr"]
+__all__ = ["Client", "GruffError"]
RUF022 sorts static manifests:
-__all__ = ["GruffError", "Client"]
+__all__ = ["Client", "GruffError"]
Constants (GR004)
PLR2004 turns magic values into named constants, which GR004 then requires to be uppercase and Final:
+MAX_WIDTH: Final = 4096
+
def validate_width(width: int, /) -> None:
- if width > 4096:
+ if width > MAX_WIDTH:
raise ValueError(width)
RUF012 applies the same annotation discipline to mutable class attributes, which GR004 excludes:
class ThumbnailWriter:
- formats = ["png", "jpg"]
+ formats: ClassVar[list[str]] = ["png", "jpg"]
Distribution
Gruff releases use PyPI wheels for Linux x86_64 and aarch64, macOS x86_64 and arm64, and Windows x86_64. Gruff is not published to crates.io.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gruff-0.0.4-py3-none-win_amd64.whl.
File metadata
- Download URL: gruff-0.0.4-py3-none-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbb2f381626136a81938b859ad4424e18c09599759ab50a42f86d9d35598c34d
|
|
| MD5 |
cf3191a4c8cd9a37cecb98a7ec3849e4
|
|
| BLAKE2b-256 |
34018cc8290e77fa1af663ae00283916c04c1195a7d1ae660f7666abdd294517
|
Provenance
The following attestation bundles were made for gruff-0.0.4-py3-none-win_amd64.whl:
Publisher:
release.yml on wkentaro/gruff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gruff-0.0.4-py3-none-win_amd64.whl -
Subject digest:
cbb2f381626136a81938b859ad4424e18c09599759ab50a42f86d9d35598c34d - Sigstore transparency entry: 2634536519
- Sigstore integration time:
-
Permalink:
wkentaro/gruff@8a31924b8bff815635ce88f66e00f59c98676718 -
Branch / Tag:
refs/tags/v0.0.4 - Owner: https://github.com/wkentaro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8a31924b8bff815635ce88f66e00f59c98676718 -
Trigger Event:
push
-
Statement type:
File details
Details for the file gruff-0.0.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: gruff-0.0.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33c6c718d8385b600900ef5da6647d01cdfc9e67c5f58451f45568f6a0fd94ad
|
|
| MD5 |
65295ad30a3696d659d883578d3f9f65
|
|
| BLAKE2b-256 |
d1d2ca51b537863bbbe44d1582a7d30434210ec8b2222a0f929aec2f5951baac
|
Provenance
The following attestation bundles were made for gruff-0.0.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on wkentaro/gruff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gruff-0.0.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
33c6c718d8385b600900ef5da6647d01cdfc9e67c5f58451f45568f6a0fd94ad - Sigstore transparency entry: 2634536483
- Sigstore integration time:
-
Permalink:
wkentaro/gruff@8a31924b8bff815635ce88f66e00f59c98676718 -
Branch / Tag:
refs/tags/v0.0.4 - Owner: https://github.com/wkentaro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8a31924b8bff815635ce88f66e00f59c98676718 -
Trigger Event:
push
-
Statement type:
File details
Details for the file gruff-0.0.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: gruff-0.0.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: Python 3, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dfd760bc120e83ee902a8ba40dafcdcd654a8dc679089c1cf1583f7aec2c6ce
|
|
| MD5 |
8d9cb1b0c2f6de721001ecd5599f4972
|
|
| BLAKE2b-256 |
6934658ed6c931969e731ec6c6a3ba3fd5e881d72ab12756f880fb793550f6ba
|
Provenance
The following attestation bundles were made for gruff-0.0.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on wkentaro/gruff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gruff-0.0.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
6dfd760bc120e83ee902a8ba40dafcdcd654a8dc679089c1cf1583f7aec2c6ce - Sigstore transparency entry: 2634536654
- Sigstore integration time:
-
Permalink:
wkentaro/gruff@8a31924b8bff815635ce88f66e00f59c98676718 -
Branch / Tag:
refs/tags/v0.0.4 - Owner: https://github.com/wkentaro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8a31924b8bff815635ce88f66e00f59c98676718 -
Trigger Event:
push
-
Statement type:
File details
Details for the file gruff-0.0.4-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: gruff-0.0.4-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.9 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
225e57823c9df70b428be74118bedce5f64194969184ed69faf8f6027f90cb02
|
|
| MD5 |
2086d4d34f2d27bfbc8dbf54cadc089d
|
|
| BLAKE2b-256 |
1a9e1b9d45affcbe2b9cfccfc90e90bce2b2c5e17e9d4b6051e2511077ffb8c9
|
Provenance
The following attestation bundles were made for gruff-0.0.4-py3-none-macosx_11_0_arm64.whl:
Publisher:
release.yml on wkentaro/gruff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gruff-0.0.4-py3-none-macosx_11_0_arm64.whl -
Subject digest:
225e57823c9df70b428be74118bedce5f64194969184ed69faf8f6027f90cb02 - Sigstore transparency entry: 2634536613
- Sigstore integration time:
-
Permalink:
wkentaro/gruff@8a31924b8bff815635ce88f66e00f59c98676718 -
Branch / Tag:
refs/tags/v0.0.4 - Owner: https://github.com/wkentaro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8a31924b8bff815635ce88f66e00f59c98676718 -
Trigger Event:
push
-
Statement type:
File details
Details for the file gruff-0.0.4-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: gruff-0.0.4-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: Python 3, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f53421c9a91e5ebe845f0ccbb02e5b449f4a72d63d7273116f04b1482eb47a4b
|
|
| MD5 |
61505f471fb443d54548361f108dbe2c
|
|
| BLAKE2b-256 |
e90e24c140fee9989e7d7e6f5384717867842037ad6289ed82a6f2a59262d41c
|
Provenance
The following attestation bundles were made for gruff-0.0.4-py3-none-macosx_10_12_x86_64.whl:
Publisher:
release.yml on wkentaro/gruff
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
gruff-0.0.4-py3-none-macosx_10_12_x86_64.whl -
Subject digest:
f53421c9a91e5ebe845f0ccbb02e5b449f4a72d63d7273116f04b1482eb47a4b - Sigstore transparency entry: 2634536564
- Sigstore integration time:
-
Permalink:
wkentaro/gruff@8a31924b8bff815635ce88f66e00f59c98676718 -
Branch / Tag:
refs/tags/v0.0.4 - Owner: https://github.com/wkentaro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8a31924b8bff815635ce88f66e00f59c98676718 -
Trigger Event:
push
-
Statement type: