fix(ruby): indent of brackets & parens

This commit is contained in:
Zheng Piaodan 2022-08-13 16:56:02 +08:00 committed by Stephan Seitz
parent 65a1817ba3
commit 48d88ddbff
4 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,5 @@
def indent_brackets
{
{}
}
end

View file

@ -0,0 +1,5 @@
def indent_parens
(
()
)
end