From https://beta.ruff.rs/docs/settings/#show-fixes
[tool.ruff]
# By default, always enumerate fixed violations.
show-fixes = true
Specifically the comment:
# By default, always enumerate fixed violations.
This comment is incorrect, the default of show-fixes is actually false. The comment should say something like:
# Enumerate all autofixed violations.