devkennyy / rungeon

🏃‍♂️Open source, puzzle based adventure game in your browser
https://rungeon.live/
GNU General Public License v3.0
17 stars 21 forks source link

add empty line after element [styles] #72

Closed devkennyy closed 2 years ago

devkennyy commented 2 years ago
a {} 

b {}

=>

a 
{} 

b 
{}

*do this for all elements if they aren't already

gruelingpine185 commented 2 years ago

Question: if I encounter a

a { ... }

should I rewrite it as

a {
    ...
}

or

a
{
    ...
}

?

devkennyy commented 2 years ago

The latter. Make sure to convert these aswell :)

a {
}

=>

a 
{
    ...
}