For readability reasons, the same separator should be used all the time.

Rule can be configured to check one of the following formats:

Noncompliant Code Example

With format "key: value":
key1=value1
key2 : value2
key3 :value3
key4:    value4

Compliant Solution

With format "key: value":
key1: value1
key2: value2
key3: value3
key4: value4