Plistlib Generator place all components in alphabetical order, is the right/expected config format way. Technically, the order does not matter as long you follow the correct
plist
syntax, is just cosmetic, so you can find quickly a setting.
Notice how all keys are alphabetically ordered, like into OC documentation?
Code:
<dict>
<key>ACPI</key>
<dict>
<key>Add</key>
<array/>
<key>Delete</key>
<array/>
<key>Patch</key>
<array/>
<key>Quirks</key>
You can move the Quirks above Add, it will work, but will turn your config file into a mess. Your kexts will be loaded properly, no matter the order. So why not do it the right way, which is OC way. That's also one of the advantages of Plistlib Generator, it will always generate a proper config file with no errors.