Big projects tend to have multiple aliases. It would be nice, especially for newcomers, to be able to document the project's aliases. This is especially useful for aliases expecting CLI arguments.
An option could be to add an `aliases_docs` project config setting where you could be able to (optionally) define a shortdoc and (maybe) a detailed doc for an alias. Something like:
aliases_docs: [
lint: [
shordoc: "lints the project",
doc: """
Some detailed docs here
"""
]
]
Would be happy to open a PR if you agree with this proposal.