Skip to content

Commit

Permalink
Allow additional text to folllow formatter pragma comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Nov 28, 2023
1 parent d9845a2 commit 6c8017e
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 1 deletion.
@@ -0,0 +1,27 @@
# fmt: off
x = 1
# fmt: on

# fmt: off reason
x = 1
# fmt: on

# fmt: off reason
x = 1
# fmt: on

# fmt: off
x = 1
# fmt: on reason

# fmt: off reason
x = 1
# fmt: on reason

# fmt: off - reason
x = 1
# fmt: on

# fmt: off
x = 1
# fmt: on - reason
@@ -0,0 +1,3 @@
x = 1 # fmt: skip
x = 1 # fmt: skip reason
x = 1 # fmt: skip - reason
9 changes: 8 additions & 1 deletion crates/ruff_python_formatter/src/comments/mod.rs
Expand Up @@ -178,7 +178,14 @@ impl SourceComment {
"off" => Some(SuppressionKind::Off),
"on" => Some(SuppressionKind::On),
"skip" => Some(SuppressionKind::Skip),
_ => None,

// Allow additional context separated by whitespace
command => match command.split_whitespace().next() {
Some("off") => Some(SuppressionKind::Off),
Some("on") => Some(SuppressionKind::On),
Some("skip") => Some(SuppressionKind::Skip),
_ => None,
},
}
} else if let Some(command) = trimmed.strip_prefix("yapf:") {
match command.trim_whitespace_start() {
Expand Down
@@ -0,0 +1,68 @@
---
source: crates/ruff_python_formatter/tests/fixtures.rs
input_file: crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_on_off/reason.py
---
## Input
```python
# fmt: off
x = 1
# fmt: on
# fmt: off reason
x = 1
# fmt: on
# fmt: off reason
x = 1
# fmt: on
# fmt: off
x = 1
# fmt: on reason
# fmt: off reason
x = 1
# fmt: on reason
# fmt: off - reason
x = 1
# fmt: on
# fmt: off
x = 1
# fmt: on - reason
```

## Output
```python
# fmt: off
x = 1
# fmt: on
# fmt: off reason
x = 1
# fmt: on
# fmt: off reason
x = 1
# fmt: on
# fmt: off
x = 1
# fmt: on reason
# fmt: off reason
x = 1
# fmt: on reason
# fmt: off - reason
x = 1
# fmt: on
# fmt: off
x = 1
# fmt: on - reason
```



@@ -0,0 +1,20 @@
---
source: crates/ruff_python_formatter/tests/fixtures.rs
input_file: crates/ruff_python_formatter/resources/test/fixtures/ruff/fmt_skip/reason.py
---
## Input
```python
x = 1 # fmt: skip
x = 1 # fmt: skip reason
x = 1 # fmt: skip - reason
```

## Output
```python
x = 1 # fmt: skip
x = 1 # fmt: skip reason
x = 1 # fmt: skip - reason
```



0 comments on commit 6c8017e

Please sign in to comment.