mirror of
https://github.com/astral-sh/ruff.git
synced 2025-12-04 01:36:46 +00:00
Ignore blank lines between comments when counting newlines-after-imports (#7607)
## Summary
Given:
```python
# -*- coding: utf-8 -*-
import random
# Defaults for arguments are defined here
# args.threshold = None;
logger = logging.getLogger("FastProject")
```
We want to count the number of newlines after `import random`, to ensure
that there's _at least one_, but up to two.
Previously, we used the end range of the statement (then skipped
trivia); instead, we need to use the end of the _last comment_. This is
similar to #7556.
Closes https://github.com/astral-sh/ruff/issues/7604.
This commit is contained in:
parent
8bfe9bda41
commit
5174e8c926
3 changed files with 34 additions and 1 deletions
|
|
@ -62,6 +62,15 @@ def func():
|
|||
|
||||
|
||||
x = 1
|
||||
|
||||
# Regression test for: https://github.com/astral-sh/ruff/issues/7604
|
||||
import os
|
||||
|
||||
# Defaults for arguments are defined here
|
||||
# args.threshold = None;
|
||||
|
||||
|
||||
logger = logging.getLogger("FastProject")
|
||||
```
|
||||
|
||||
## Output
|
||||
|
|
@ -130,6 +139,16 @@ def func():
|
|||
import sys
|
||||
|
||||
x = 1
|
||||
|
||||
|
||||
# Regression test for: https://github.com/astral-sh/ruff/issues/7604
|
||||
import os
|
||||
|
||||
# Defaults for arguments are defined here
|
||||
# args.threshold = None;
|
||||
|
||||
|
||||
logger = logging.getLogger("FastProject")
|
||||
```
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue