Open
Description
If I configure them as single quotes, I wouldn't expect any string being wrapped in double quotes (simple or tripled).
Wouldn't it be more consistent to always force the according quotes?
E.g., single quotes: If it contains '
-> format to tripled single quotes '''
, else simple single quote '
.
Keywords
tripled single double quotes Q000 Q001 Q002 Q003
Code snippet
THREE_DOUBLE_QUOTES = """John Doe's text."""
Config
quote-style = 'single'
[lint.flake8-quotes]
inline-quotes = 'single'
multiline-quotes = 'single'
Sample
Ruff
v0.9.4
Perhaps related: