Closed
Description
Describe the Bug
The tmlanguage file for this repository contains syntax that is incompatible with GitHub Linguist. This is blocking Astro from being added to GitHub's list of languages. github-linguist/linguist#5460 (comment)
The issue lies in how some capture groups are formatted. The indices should be integer strings in an object, not an array.
❌ Wrong
"captures": [
{"name": "..."}
]
✔️ Right
"captures": {
"0": {"name": "..."}
}
Metadata
Assignees
Labels
No labels
Activity