From 0229d14b690c39e1fef9d5726652b9d6f9431a75 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 22 Sep 2023 13:28:44 -0400 Subject: [PATCH] Ignore blank lines between comments when counting newlines-after-imports --- .../test/fixtures/ruff/statement/import.py | 9 +++++++++ .../src/statement/suite.rs | 7 ++++++- .../format@statement__import.py.snap | 19 +++++++++++++++++++ 3 files changed, 34 insertions(+), 1 deletion(-) diff --git a/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import.py b/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import.py index db6590784767f..04bb263eaf9c2 100644 --- a/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import.py +++ b/crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/import.py @@ -56,3 +56,12 @@ 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") diff --git a/crates/ruff_python_formatter/src/statement/suite.rs b/crates/ruff_python_formatter/src/statement/suite.rs index 7573b3e397f7f..eae1d849e21eb 100644 --- a/crates/ruff_python_formatter/src/statement/suite.rs +++ b/crates/ruff_python_formatter/src/statement/suite.rs @@ -190,7 +190,12 @@ impl FormatRule> for FormatSuite { // a leading comment. match self.kind { SuiteKind::TopLevel => { - match lines_after_ignoring_trivia(preceding.end(), source) { + let end = if let Some(last_trailing) = preceding_comments.trailing.last() { + last_trailing.end() + } else { + preceding.end() + }; + match lines_after(end, source) { 0..=2 => empty_line().fmt(f)?, _ => match source_type { PySourceType::Stub => { diff --git a/crates/ruff_python_formatter/tests/snapshots/format@statement__import.py.snap b/crates/ruff_python_formatter/tests/snapshots/format@statement__import.py.snap index 5b3177fc5d3ed..dd348f8a33967 100644 --- a/crates/ruff_python_formatter/tests/snapshots/format@statement__import.py.snap +++ b/crates/ruff_python_formatter/tests/snapshots/format@statement__import.py.snap @@ -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") ```