For readability reasons, all properties and comments should be aligned at column 1.

Noncompliant Code Example

           key1=value1
      key2=value2

        # comments
        key3=value3

Compliant Solution

key1=value1
key2=value2

# comments
key3=value3