ruff/crates/ruff_linter
Hans ffcdd4ea42
[`refurb`] Add fix safety section (`FURB105`) (#17499)
## Summary

This PR add the `fix safety` section for rule `FURB105` in
`print_empty_string.rs` for #15584

Before:
```
def get_sep():
    print("side effect")
    return ""
    
print("", sep=get_sep())
```

After:
```
def get_sep():
    print("side effect")
    return ""
    
print()
```

---------

Co-authored-by: Brent Westbrook <36778786+ntBre@users.noreply.github.com>
2025-08-29 09:41:06 -04:00
..
resources [`fastapi`] Fix false positive for paths with spaces around parameters (`FAST003`) (#20077) 2025-08-29 13:40:25 +00:00
src [`refurb`] Add fix safety section (`FURB105`) (#17499) 2025-08-29 09:41:06 -04:00
Cargo.toml Bump 0.12.11 (#20136) 2025-08-28 09:45:01 -04:00