remark-lint
Advanced tools
Comparing version 9.1.1 to 9.1.2
@@ -1,11 +0,7 @@ | ||
/** | ||
* The core plugin for `remark-lint`. | ||
* This adds support for ignoring stuff from messages (`<!--lint ignore-->`). | ||
* All rules are in their own packages and presets. | ||
* | ||
* @type {import('unified').Plugin<Array<void>, Root>} | ||
*/ | ||
export default function remarkLint(): | ||
export default function remarkLint( | ||
this: import('unified').Processor<void, import('mdast').Root, void, void>, | ||
...settings: void[] | ||
): | ||
| void | ||
| import('unified').Transformer<import('mdast').Root, import('mdast').Root> | ||
export type Root = import('mdast').Root |
@@ -12,2 +12,3 @@ /** | ||
* | ||
* @this {import('unified').Processor} | ||
* @type {import('unified').Plugin<Array<void>, Root>} | ||
@@ -14,0 +15,0 @@ */ |
{ | ||
"name": "remark-lint", | ||
"version": "9.1.1", | ||
"version": "9.1.2", | ||
"description": "remark plugin to lint Markdown code style", | ||
@@ -43,5 +43,3 @@ "license": "MIT", | ||
}, | ||
"scripts": { | ||
"build": "rimraf \"*.d.ts\" && tsc && type-coverage" | ||
}, | ||
"scripts": {}, | ||
"xo": false, | ||
@@ -48,0 +46,0 @@ "typeCoverage": { |
@@ -48,13 +48,13 @@ # ![remark-lint][logo] | ||
In Deno with [Skypack][]: | ||
In Deno with [`esm.sh`][esmsh]: | ||
```js | ||
import remarkLint from 'https://cdn.skypack.dev/remark-lint@9?dts' | ||
import remarkLint from 'https://esm.sh/remark-lint@9' | ||
``` | ||
In browsers with [Skypack][]: | ||
In browsers with [`esm.sh`][esmsh]: | ||
```html | ||
<script type="module"> | ||
import remarkLint from 'https://cdn.skypack.dev/remark-lint@9?min' | ||
import remarkLint from 'https://esm.sh/remark-lint@9?build' | ||
</script> | ||
@@ -167,3 +167,3 @@ ``` | ||
[skypack]: https://www.skypack.dev | ||
[esmsh]: https://esm.sh | ||
@@ -170,0 +170,0 @@ [npm]: https://docs.npmjs.com/cli/install |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6640
26