mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-24 05:25:17 +00:00
No newline after function docstrings (#8375)
Fixup for #8216 to not apply to function docstrings. Main before #8216: | project | similarity index | total files | changed files | |----------------|------------------:|------------------:|------------------:| | cpython | 0.75804 | 1799 | 1648 | | django | 0.99984 | 2772 | 33 | | home-assistant | 0.99963 | 10596 | 148 | | poetry | 0.99925 | 317 | 12 | | transformers | 0.99967 | 2657 | 328 | | twine | 1.00000 | 33 | 0 | | typeshed | 0.99980 | 3669 | 18 | | warehouse | 0.99977 | 654 | 13 | | zulip | 0.99970 | 1459 | 22 | main now: | project | similarity index | total files | changed files | |----------------|------------------:|------------------:|------------------:| | cpython | 0.75804 | 1799 | 1648 | | django | 0.99984 | 2772 | 48 | | home-assistant | 0.99963 | 10596 | 181 | | poetry | 0.99925 | 317 | 12 | | transformers | 0.99967 | 2657 | 339 | | twine | 1.00000 | 33 | 0 | | typeshed | 0.99980 | 3669 | 18 | | warehouse | 0.99977 | 654 | 13 | | zulip | 0.99970 | 1459 | 23 | PR: | project | similarity index | total files | changed files | |----------------|------------------:|------------------:|------------------:| | cpython | 0.75804 | 1799 | 1648 | | django | 0.99984 | 2772 | 33 | | home-assistant | 0.99963 | 10596 | 148 | | poetry | 0.99925 | 317 | 12 | | transformers | 0.99967 | 2657 | 328 | | twine | 1.00000 | 33 | 0 | | typeshed | 0.99980 | 3669 | 18 | | warehouse | 0.99977 | 654 | 13 | | zulip | 0.99970 | 1459 | 22 |
This commit is contained in:
parent
23ed4e9616
commit
3076d76b0a
4 changed files with 82 additions and 34 deletions
|
@ -225,11 +225,8 @@ d={'a':1,
|
|||
# fmt: on
|
||||
goes + here,
|
||||
andhere,
|
||||
@@ -120,10 +121,13 @@
|
||||
|
||||
The comments between will be formatted. This is a known limitation.
|
||||
@@ -122,8 +123,10 @@
|
||||
"""
|
||||
+
|
||||
# fmt: off
|
||||
|
||||
- # hey, that won't work
|
||||
|
@ -240,7 +237,7 @@ d={'a':1,
|
|||
# fmt: on
|
||||
pass
|
||||
|
||||
@@ -138,7 +142,7 @@
|
||||
@@ -138,7 +141,7 @@
|
||||
now . considers . multiple . fmt . directives . within . one . prefix
|
||||
# fmt: on
|
||||
# fmt: off
|
||||
|
@ -249,7 +246,7 @@ d={'a':1,
|
|||
# fmt: on
|
||||
|
||||
|
||||
@@ -178,14 +182,18 @@
|
||||
@@ -178,14 +181,18 @@
|
||||
$
|
||||
""",
|
||||
# fmt: off
|
||||
|
@ -398,7 +395,6 @@ def off_and_on_without_data():
|
|||
|
||||
The comments between will be formatted. This is a known limitation.
|
||||
"""
|
||||
|
||||
# fmt: off
|
||||
|
||||
|
||||
|
|
|
@ -142,6 +142,13 @@ class CommentAfterDocstring5:
|
|||
# This class is also the base class for pathbrowser.PathBrowser.
|
||||
|
||||
|
||||
def f():
|
||||
"""Browse module classes and functions in IDLE."""
|
||||
# ^ Do not insert a newline above here
|
||||
|
||||
pass
|
||||
|
||||
|
||||
class TabbedIndent:
|
||||
def tabbed_indent(self):
|
||||
"""check for correct tabbed formatting
|
||||
|
@ -301,6 +308,13 @@ class CommentAfterDocstring5:
|
|||
# This class is also the base class for pathbrowser.PathBrowser.
|
||||
|
||||
|
||||
def f():
|
||||
"""Browse module classes and functions in IDLE."""
|
||||
# ^ Do not insert a newline above here
|
||||
|
||||
pass
|
||||
|
||||
|
||||
class TabbedIndent:
|
||||
def tabbed_indent(self):
|
||||
"""check for correct tabbed formatting
|
||||
|
@ -460,6 +474,13 @@ class CommentAfterDocstring5:
|
|||
# This class is also the base class for pathbrowser.PathBrowser.
|
||||
|
||||
|
||||
def f():
|
||||
"""Browse module classes and functions in IDLE."""
|
||||
# ^ Do not insert a newline above here
|
||||
|
||||
pass
|
||||
|
||||
|
||||
class TabbedIndent:
|
||||
def tabbed_indent(self):
|
||||
"""check for correct tabbed formatting
|
||||
|
@ -619,6 +640,13 @@ class CommentAfterDocstring5:
|
|||
# This class is also the base class for pathbrowser.PathBrowser.
|
||||
|
||||
|
||||
def f():
|
||||
"""Browse module classes and functions in IDLE."""
|
||||
# ^ Do not insert a newline above here
|
||||
|
||||
pass
|
||||
|
||||
|
||||
class TabbedIndent:
|
||||
def tabbed_indent(self):
|
||||
"""check for correct tabbed formatting
|
||||
|
@ -778,6 +806,13 @@ class CommentAfterDocstring5:
|
|||
# This class is also the base class for pathbrowser.PathBrowser.
|
||||
|
||||
|
||||
def f():
|
||||
"""Browse module classes and functions in IDLE."""
|
||||
# ^ Do not insert a newline above here
|
||||
|
||||
pass
|
||||
|
||||
|
||||
class TabbedIndent:
|
||||
def tabbed_indent(self):
|
||||
"""check for correct tabbed formatting
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue