Normalize mutli-line string indentation (#1271)

This commit is contained in:
Jen Basch
2025-10-30 08:30:30 -07:00
committed by GitHub
parent 9469dd885d
commit 08c414f3ac
3 changed files with 46 additions and 9 deletions

View File

@@ -27,3 +27,23 @@ qux = """
\(foo)
"""
// mixed tabs and spaces
quux {
// space tab
"""
bar
baz
\(1)
"""
// tab tab
"""
bar
baz
\(1)
"""
}

View File

@@ -29,3 +29,23 @@ qux =
\(foo)
"""
// mixed tabs and spaces
quux {
// space tab
"""
bar
baz
\(1)
"""
// tab tab
"""
bar
baz
\(1)
"""
}