UG4 / lua-table-spec-proposal

Specification Proposal for Lua-Tables
3 stars 0 forks source link

Code Formatting #7

Open miho opened 5 years ago

miho commented 5 years ago

Files written after editing them should use proper indentation.

instead of

problem = {
name = "abc"
}

we want

problem = {
    name = "abc"
}