EmptyLines

ide.<ProgrammingLanguage>.EmptyLines = true | false (default = true)

In programming languages that allow empty source lines, LF‑ET generates empty lines by default between logically separated sections to improve readability:

Entry in an LFET.Project.ini-file:
ide.Java.EmptyLines = true
Result of program gene­ration:
if (...)
{
    statements for action A01

    statements for action A02

    statements for action A03
}
No blank lines are ge­ne­ra­ted with the false value:
ide.Java.EmptyLines = false
Program gene­ration output:
if (...)
{
    statements for action A01
    statements for action A02
    statements for action A03
}

There are also programming languages in which empty source lines are not allowed at all. With the value false, the conversion of all blank lines into blank comment lines can be triggered.