mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 18:28:24 +00:00
Use double quotes for all docstrings, including single-quoted docstrings (#9020)
This commit is contained in:
parent
946b308197
commit
981a0703ed
4 changed files with 209 additions and 4 deletions
|
@ -14,5 +14,8 @@
|
|||
{
|
||||
"indent_style": "tab",
|
||||
"indent_width": 4
|
||||
},
|
||||
{
|
||||
"quote_style": "single"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -150,3 +150,8 @@ class TabbedIndent:
|
|||
Normal indented line
|
||||
- autor
|
||||
"""
|
||||
|
||||
|
||||
def single_quoted():
|
||||
' content\ '
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue