Adding the orderby key will order sequences alphabetically in config exports for better readability and less confusing diffs.
See the change record: New orderby key added to configuration schema for sequences.
in entity_usage.settings.yml
entity_usage.settings:
type: config_object
mapping:
// ... other config schema key definitions
track_enabled_plugins:
label: Enabled tracking plugins
type: sequence
orderby: value
sequence:
type: string
before adding the orderby:
track_enabled_plugins:
- dynamic_entity_reference
- link
- linkit
- layout_builder
- entity_reference
- entity_embed
- html_link
- block_field
after adding the orderby:
track_enabled_plugins:
- block_field
- dynamic_entity_reference
- entity_embed
- entity_reference
- html_link
- layout_builder
- link
- linkit
Comments
Comment #2
mcaddz commentedComment #4
acbramley commentedThis would be a good improvement, test failures are unrelated (HEAD is failing)
Comment #7
marcoscanoApologies for the delay, it makes sense, thank you!
Comment #9
acbramley commentedLooks like Drupal CI is still running, would you mind turning it off now we have Gitlab CI we can save some minutes :)
Comment #10
marcoscanoDone! Thank you! 👍