remark-lint-code-block-syntax
v0.11.0
Published
A remark-lint rule to check language syntax in a code block.
Downloads
615
Maintainers
Readme
remark-lint-code-block-syntax
A remark-lint rule to check language syntax in a code block.
Supported languages
- JavaScript
- JSON
- JSONC
- JSON5
- YAML
- CSS
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
- Check out the latest code on your local repository
- Run
npm version <next_version>
- Run
git push --follow-tags
- Start editing a new GitHub release
- Chose the new tag
- Click Generate release notes
- Remove trivial change items from the release notes
- Click Save draft
- Double-check the draft release
- Click Publish release if you find no problems (GitHub Actions will start publishing automatically)