Summary
The generated clippy.toml currently includes an extra blank line at EOF.
When importing the Rust template into statelet, git diff --check reported:
clippy.toml:8: new blank line at EOF.
I removed the blank line locally before committing the template baseline.
Expected behaviour
Generated clippy.toml should end immediately after:
allow-expect-in-tests = true
with a single final newline, but no additional blank line.
Why this matters
The template should pass whitespace gates immediately after rendering/import.
This is a small issue, but it creates avoidable cleanup in downstream generated
repositories before the normal make fmt / lint workflow can proceed cleanly.
Summary
The generated
clippy.tomlcurrently includes an extra blank line at EOF.When importing the Rust template into
statelet,git diff --checkreported:I removed the blank line locally before committing the template baseline.
Expected behaviour
Generated
clippy.tomlshould end immediately after:with a single final newline, but no additional blank line.
Why this matters
The template should pass whitespace gates immediately after rendering/import.
This is a small issue, but it creates avoidable cleanup in downstream generated
repositories before the normal
make fmt/ lint workflow can proceed cleanly.