Package Exports
- remark-lint-no-literal-urls
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (remark-lint-no-literal-urls) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
remark-lint-no-literal-urls
Warn when URLs without angle-brackets are used.
Install
npm install --save remark-lint-no-literal-urls
Example
When this rule is turned on, the following file
valid.md
is ok:
<http://foo.bar/baz>
<mailto:qux@quux.com>
When this rule is turned on, the following file
invalid.md
is not ok:
http://foo.bar/baz
mailto:qux@quux.com
1:1-1:19: Don’t use literal URLs without angle brackets