Disallow reversed link and image syntax in Markdown.
Markdown syntax for links requires the text to be in square brackets [] followed by the URL in parentheses (). Similarly, images use . It's easy to accidentally reverse these brackets, which results in invalid syntax that won't render correctly.
This rule is triggered when text that appears to be a link or image is encountered, but the syntax seems to have been reversed (the [] and () are in the wrong order).
Examples of incorrect code for this rule:
<!-- eslint markdown/no-reversed-media-syntax: "error" -->
(ESLint)[https://eslint.org/]
!(A beautiful sunset)[sunset.png]
# (ESLint)[https://eslint.org/]
# !(A beautiful sunset)[sunset.png]
| ESLint | Sunset |
| ----------------------------- | --------------------------------- |
| (ESLint)[https://eslint.org/] | !(A beautiful sunset)[sunset.png] |Examples of correct code for this rule:
<!-- eslint markdown/no-reversed-media-syntax: "error" -->
[ESLint](https://eslint.org/)

# [ESLint](https://eslint.org/)
# 
| ESLint | Sunset |
| ----------------------------- | --------------------------------- |
| [ESLint](https://eslint.org/) |  |If you don't need to enforce correct link and image syntax, you can safely disable this rule.