Skip to content

RF06 — Identifier quoted unnecessarily

Group: References · Auto-fixable: yes

Double quotes only matter when the identifier would otherwise be folded or rejected — mixed case, special characters, or a reserved word. A plain lower-case name does not need them, and the quotes just add noise. Removed automatically.

bad: SELECT "id" FROM "patient"
good: SELECT id FROM patient

Disable this rule in banshee.toml:

[lint]
exclude = ["RF06"]

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