-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
facb6f8
commit 86a5375
Showing
5 changed files
with
226 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
...r/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class.options.json
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,6 @@ | ||
[ | ||
{ | ||
"source_type": "Stub", | ||
"preview": "enabled" | ||
} | ||
] |
174 changes: 174 additions & 0 deletions
174
..._formatter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class.pyi
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,174 @@ | ||
class Top1: | ||
pass | ||
class Top2: | ||
pass | ||
|
||
class Top: | ||
class Ellipsis: ... | ||
class Ellipsis: ... | ||
|
||
class Top: | ||
class Ellipsis: ... | ||
class Pass: | ||
pass | ||
|
||
class Top: | ||
class Ellipsis: ... | ||
class_variable = 1 | ||
|
||
class Top: | ||
class TrailingComment: | ||
pass | ||
# comment | ||
class Other: | ||
pass | ||
|
||
class Top: | ||
class CommentWithEllipsis: ... | ||
# comment | ||
class Other: ... | ||
|
||
class Top: | ||
class TrailingCommentWithMultipleBlankLines: | ||
pass | ||
|
||
|
||
# comment | ||
class Other: | ||
pass | ||
|
||
class Top: | ||
class Nested: | ||
pass | ||
|
||
# comment | ||
class LeadingComment: | ||
pass | ||
|
||
class Top: | ||
@decorator | ||
class Ellipsis: ... | ||
@decorator | ||
class Ellipsis: ... | ||
|
||
class Top: | ||
@decorator | ||
class Ellipsis: ... | ||
@decorator | ||
class Pass: | ||
pass | ||
|
||
class Top: | ||
class Foo: | ||
pass | ||
|
||
|
||
|
||
|
||
class AfterMultipleEmptyLines: | ||
pass | ||
|
||
class Top: | ||
class Nested11: | ||
class Nested12: | ||
pass | ||
class Nested21: | ||
pass | ||
|
||
class Top: | ||
class Nested11: | ||
class Nested12: | ||
pass | ||
# comment | ||
class Nested21: | ||
pass | ||
|
||
class Top: | ||
class Nested11: | ||
class Nested12: | ||
pass | ||
# comment | ||
class Nested21: | ||
pass | ||
# comment | ||
|
||
class Top1: | ||
class Nested: | ||
pass | ||
class Top2: | ||
pass | ||
|
||
class Top1: | ||
class Nested: | ||
pass | ||
# comment | ||
class Top2: | ||
pass | ||
|
||
class Top1: | ||
class Nested: | ||
pass | ||
# comment | ||
class Top2: | ||
pass | ||
|
||
if foo: | ||
class Nested1: | ||
pass | ||
class Nested2: | ||
pass | ||
else: | ||
pass | ||
|
||
if foo: | ||
class Nested1: | ||
pass | ||
class Nested2: | ||
pass | ||
# comment | ||
else: | ||
pass | ||
|
||
if top1: | ||
class Nested: | ||
pass | ||
if top2: | ||
pass | ||
|
||
if top1: | ||
class Nested: | ||
pass | ||
# comment | ||
if top2: | ||
pass | ||
|
||
if top1: | ||
class Nested: | ||
pass | ||
# comment | ||
if top2: | ||
pass | ||
|
||
try: | ||
class Try: | ||
pass | ||
except: | ||
class Except: | ||
pass | ||
foo = 1 | ||
|
||
match foo: | ||
case 1: | ||
class Nested: | ||
pass | ||
case 2: | ||
class Nested: | ||
pass | ||
case _: | ||
class Nested: | ||
pass | ||
foo = 1 | ||
|
||
class Eof: | ||
class Nested: | ||
pass |
6 changes: 6 additions & 0 deletions
6
...sources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class_eof.options.json
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,6 @@ | ||
[ | ||
{ | ||
"source_type": "Stub", | ||
"preview": "enabled" | ||
} | ||
] |
17 changes: 17 additions & 0 deletions
17
...matter/resources/test/fixtures/ruff/stub_files/blank_line_after_nested_stub_class_eof.pyi
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,17 @@ | ||
# A separate file to test out the behavior when there are a mix of blank lines | ||
# and comments at EOF just after a nested stub class. | ||
|
||
class Top: | ||
class Nested1: | ||
class Nested12: | ||
pass | ||
# comment | ||
class Nested2: | ||
pass | ||
|
||
|
||
|
||
# comment | ||
|
||
|
||
|
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