Skip to content

RF03 — Inconsistent column qualification in a single-table query

Group: References · Auto-fixable: no

Within a single-table query, either qualify every column with the table/alias or qualify none. Mixing the two makes the code noisy and inconsistent.

Disable this rule in banshee.toml:

[lint]
exclude = ["RF03"]

Or silence one line with -- noqa: RF03. See Linting.