asyncapi-3-tags-alphabetical
asyncapi-3-tags-alphabetical keeps root tags easy to scan.
Why did this violation appear?
The root tags array is not sorted by name.
Bad example
asyncapi: 3.1.0
tags:
- name: users
- name: billing
Good example
asyncapi: 3.1.0
tags:
- name: billing
- name: users
How do I fix this violation?
Sort root tags alphabetically by name.
