unified

Project: ybiquitous/remark-lint-code-block-syntax

Package: remark-lint-code-block-syntax@0.6.0

  1. Dependents: 0
  2. A remark-lint rule to check language syntax in a code block.
  1. remark 214
  2. lint 80
  3. rule 75
  4. remark-lint-rule 68
  5. code 5
  6. block 2

npm node

remark-lint-code-block-syntax

A remark-lint rule to check language syntax in a code block.

Supported languages

Install

npm install remark-lint-code-block-syntax

Usage

Via a command-line argument:

$ remark --use remark-lint-code-block-syntax
docs/config.md
  32:1-32:4  warning  Invalid JSON: Unexpected token a in JSON at position 128  code-block-syntax  remark-lint

Via a configuration file:

{
  "plugins": ["remark-lint-code-block-syntax"]
}

Via JavaScript API:

import { reporter } from "vfile-reporter";
import { remark } from "remark";
import remarkLintCodeBlockSyntax from "remark-lint-code-block-syntax";

main();

async function main() {
  const code = `
\`\`\`js
const sum = 1 +;
\`\`\`
`;
  const file = await remark().use(remarkLintCodeBlockSyntax).process(code);
  console.error(reporter(file));
}

Development

This section is for developers or maintainers.

Releasing

  1. Check out the latest code on your local repository
  2. Run npm version <next_version>
  3. Run git push --follow-tags
  4. Start editing a new GitHub release
  5. Chose the new tag
  6. Click Generate release notes
  7. Remove trivial change items from the release notes
  8. Click Save draft
  9. Double-check the draft release
  10. Click Publish release if you find no problems (GitHub Actions will start publishing automatically)