An ESLint plugin to lint JavaScript in Markdown.
Supported extensions are .markdown
, .mdown
, .mkdn
, and .md
.
Install the plugin:
npm install --save-dev eslint-plugin-markdown
Add it to your .eslintrc
:
{
"plugins": [
"markdown"
]
}
It will lint js
, javascript
, or node
fenced code blocks in your Markdown documents:
```js
// This gets linted
var answer = 6 * 7;
console.log(answer);
```
```JavaScript
// This also gets linted
/* eslint quotes: [2, "double"] */
function hello() {
console.log("Hello, world!");
}
hello();
```
Blocks that don't specify either js
or javascript
syntax are ignored:
```
This is plain text and doesn't get linted.
```
$ git clone https://github.com/eslint/eslint-plugin-markdown.git
$ cd eslint-plugin-markdown
$ npm link
$ npm link eslint-plugin-markdown
$ npm test
This project follows the ESLint contribution guidelines.