-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
I'd like to have something similar to php-cs-fixer where you can add a blank line above statements when they're on the same indentation level.
e.g
before
local function parse(input)
if #input < 1 then
return false
end
return true
endafter
local function parse(input)
if #input < 1 then
return false
end
return true
endor
before
local a = 9000
if true then
foo = bar
endafter
local a = 9000
if true then
foo = bar
endthere are more examples in the link provided (granted they are in php)
Metadata
Metadata
Assignees
Labels
No labels