-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Printer must print a newline if a line only contains characters …
…with a 0 width
- Loading branch information
1 parent
52af92c
commit 674d4df
Showing
3 changed files
with
43 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
crates/ruff_python_formatter/tests/snapshots/format@docstring_non_visible_characters.py.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
source: crates/ruff_python_formatter/tests/fixtures.rs | ||
input_file: crates/ruff_python_formatter/resources/test/fixtures/ruff/docstring_non_visible_characters.py | ||
--- | ||
## Input | ||
```python | ||
# Regresssion test for https://github.com/astral-sh/ruff/issues/11724 | ||
''' | ||
''' | ||
``` | ||
|
||
## Output | ||
```python | ||
# Regresssion test for https://github.com/astral-sh/ruff/issues/11724 | ||
""" | ||
""" | ||
``` |