You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the latest Ruff version (0.3.5), my configuration to ignore rule Q000 ("Single quotes found but double quotes preferred") is no longer respected.
Here's an example file test.py
test='hello, world'
And configuration ruff.toml
[lint]
select = [
"Q", # flake8-quotes
]
ignore = [
"Q000", # Single quotes found but double quotes preferred
]
Using version 0.3.5 I get output:
(main) C:\Users\VA\test>ruff version
ruff 0.3.5 (200ebeebd 2024-04-01)
(main) C:\Users\VA\test>ruff check
test.py:1:8: Q000 Single quotes found but double quotes preferred
Found 1 error.
This only occurs on version 0.3.5, and is not present in 0.3.4
(main) C:\Users\VA\test>ruff version
ruff 0.3.4 (5062572ac 2024-03-21)
(main) C:\Users\VA\test>ruff check
All checks passed!
The text was updated successfully, but these errors were encountered:
Using the latest Ruff version (0.3.5), my configuration to ignore rule Q000 ("Single quotes found but double quotes preferred") is no longer respected.
Here's an example file
test.py
And configuration
ruff.toml
Using version 0.3.5 I get output:
This only occurs on version 0.3.5, and is not present in 0.3.4
The text was updated successfully, but these errors were encountered: