semistandard-format
semistandard-format copied to clipboard
Should remove padding at end of block
example:
function hello () {
console.log('hello world');
}
hello();
output:
function hello () {
console.log('hello world');
}
hello();
I expected the last blank line in the function to be removed.
oops, seems to be duplicate of https://github.com/maxogden/standard-format/issues/110
We can leave this issue here until it gets fixed :+1: