yaml: Add single quotes to list of brackets (#16859)
Closes #16854 Release Notes: - Single quotes are now auto-closable in YAML files
This commit is contained in:
parent
73bde398af
commit
afe4d8c8cc
1 changed files with 1 additions and 0 deletions
|
@ -7,6 +7,7 @@ brackets = [
|
|||
{ start = "{", end = "}", close = true, newline = true },
|
||||
{ start = "[", end = "]", close = true, newline = true },
|
||||
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
|
||||
{ start = "'", end = "'", close = true, newline = false, not_in = ["string"] },
|
||||
]
|
||||
|
||||
auto_indent_using_last_non_empty_line = false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue