gnolang / tlin

Advanced Linter for Gno
MIT License
13 stars 1 forks source link

fix: Adjust Indent Position #74

Closed notJoon closed 1 week ago

notJoon commented 1 week ago

Description

Improve snippet formatting by removing common indent prefix from code lines.

Before

Simplified output; dots are indicates the indentation

 1 | ....if foo() {
 2 | ........println()
 3 | ....} 

After

 1 | if foo()
 2 | ....println()
 3 | }