Having consecutive var sections is useless and negatively impacts readability.
Combining the sections into one larger section is more concise and easier to understand.
This rule also picks up consecutive threadvar sections.
Combine the var or threadvar sections together:
var Foo: Integer; Bar: string; var Baz: Double;
var Foo: Integer; Bar: string; Baz: Double;