Releases: eslint/markdown
v2.0.0-rc.1
1dd7089Fix: npm prepare script on Windows (refs #166) (#168) (Brandon Mills)23ac2b9Fix: Ignore words in info string after syntax (fixes #166) (#167) (Brandon Mills)8f729d3Chore: Switch to main for primary branch (fixes #161) (#165) (Brandon Mills)d30c50fChore: Automatically install example dependencies (#164) (Brandon Mills)
Migrating from eslint-plugin-markdown v1
-
Install this release candidate:
$ npm install --save-dev eslint@latest eslint-plugin-markdown@next
-
In your
.eslintrc.jsfile, extend the recommended config:// .eslintrc.js module.exports = { - plugins: ["markdown"], - overrides: [ - { - files: ["**/*.md"], - parserOptions: { - ecmaFeatures: { - impliedStrict: true - } - }, - } - ] + extends: "plugin:markdown/recommended" };
The readme's detailed migration instructions discuss all of the differences between v1 and v2.
v2.0.0-rc.0
d94c22fBuild: Install example test dependencies in Jenkins (#160) (Brandon Mills)7f26cb9Docs: Reference recommended config disabled rules (#159) (Brandon Mills)bf7648fDocs: Add TypeScript example (#155) (Brandon Mills)d80be9eNew: Add rules to recommended config (#157) (Nikolay Stoynov)fc4d7aaChore: run CI in Node 14.x (#158) (Kai Cataldo)f2d4923Docs: Add React example (#152) (Brandon Mills)eb66833New: Add recommended config (fixes #151) (#153) (Brandon Mills)0311640Fix: Don't require message end locations (fixes #112) (#154) (Brandon Mills)
Migrating from eslint-plugin-markdown v1
-
Install this release candidate:
$ npm install --save-dev eslint@latest eslint-plugin-markdown@next
-
In your
.eslintrc.jsfile, extend the recommended config:// .eslintrc.js module.exports = { - plugins: ["markdown"], - overrides: [ - { - files: ["**/*.md"], - parserOptions: { - ecmaFeatures: { - impliedStrict: true - } - }, - } - ] + extends: "plugin:markdown/recommended" };
The readme's detailed migration instructions discuss all of the differences between v1 and v2.
v2.0.0-alpha.0
51e48c6Docs: Revamp documentation for v2 (#149) (Brandon Mills)b221391Docs: Dogfood plugin by linting readme (#145) (Brandon Mills)7423610Docs: Explain use of --ext option in ESLint v7 (#146) (Brandon Mills)0d4dbe8Breaking: Implement new processor API (fixes #138) (#144) (Brandon Mills)7eeafb8Chore: Update ESLint config and plugins (#143) (Brandon Mills)f483343Breaking: Require ESLint v6 (#142) (Brandon Mills)9aa1fdcChore: Use ES2018 object spread syntax (#141) (Brandon Mills)f584cc6Build: Remove Travis (#140) (Brandon Mills)35f9a11Breaking: Drop support for Node.js v6 (refs #138) (#137) (Brandon Mills)6f02ef5Chore: Add npm version and build status badges (#139) (Brandon Mills)
Migrating from eslint-plugin-markdown v1
eslint-plugin-markdown v1 used an older version of ESLint's processor API.
The Markdown processor automatically ran on .md, .mkdn, .mdown, and .markdown files, and it only extracted fenced code blocks marked with js, javascript, jsx, or node syntax.
Configuration specifically for fenced code blocks went inside an overrides entry with a files pattern matching the containing Markdown document's filename that applied to all fenced code blocks inside the file.
// .eslintrc.js for eslint-plugin-markdown v1
module.exports = {
plugins: ["markdown"],
overrides: [
{
files: ["**/*.md"],
// In v1, configuration for fenced code blocks went inside an
// `overrides` entry with a .md pattern, for example:
parserOptions: {
ecmaFeatures: {
impliedStrict: true
}
},
rules: {
"no-console": "off"
}
}
]
};RFC3 designed a new processor API to remove these limitations, and the new API was implemented as part of ESLint v6.
eslint-plugin-markdown v2 uses this new API.
$ npm install --save-dev eslint@latest eslint-plugin-markdown@nextAll of the Markdown file extensions that were previously hard-coded are now fully configurable in .eslintrc.js.
Use the new processor option to apply the markdown/markdown processor on any Markdown documents matching a files pattern.
Each fenced code block inside a Markdown document has a virtual filename appended to the Markdown file's path.
The virtual filename's extension will match the fenced code block's syntax tag, so for example, ```js code blocks in README.md would match README.md/*.js.
// eslintrc.js for eslint-plugin-markdown v2
module.exports = {
plugins: ["markdown"],
overrides: [
{
// In v2, explicitly apply eslint-plugin-markdown's `markdown`
// processor on any Markdown files you want to lint.
files: ["**/*.md"],
processor: "markdown/markdown"
},
{
// In v2, configuration for fenced code blocks is separate from the
// containing Markdown file. Each code block has a virtual filename
// appended to the Markdown file's path.
files: ["**/*.md/*.js"],
// Configuration for fenced code blocks goes with the override for
// the code block's virtual filename, for example:
parserOptions: {
ecmaFeatures: {
impliedStrict: true
}
},
rules: {
"no-console": "off"
}
}
]
};If you need to precisely mimic the behavior of v1 with the hard-coded Markdown extensions and fenced code block syntaxes, you can use those as glob patterns in overrides[].files:
// eslintrc.js for v2 mimicking v1 behavior
module.exports = {
plugins: ["markdown"],
overrides: [
{
files: ["**/*.{md,mkdn,mdown,markdown}"],
processor: "markdown/markdown"
},
{
files: ["**/*.{md,mkdn,mdown,markdown}/*.{js,javascript,jsx,node}"]
// ...
}
]
};v1.0.2
v1.0.1
fb0b5a3Fix: Indent multiline fixes (fixes #120) (#124) (Brandon Mills)07c9017Chore: Use GitHub Actions (#123) (Brandon Mills)b5bf014Chore: Add Node 12 to Travis (#122) (Brandon Mills)dc90961Fix: Support autofix at the very start of blocks (fixes #117) (#119) (Simon Lydell)2de2490Docs: Syntax highlight Markdown (#116) (Brett Zamir)fdacf0cChore: Upgrade to [email protected] (#110) (Brandon Mills)
v1.0.0
v1.0.0-rc.1
v1.0.0-rc.0
- 8fe9a0e New: Enable autofix with --fix (fixes #58) (#97) (Bohdan Khodakivskyi)
- a5d0cce Fix: Ignore anything after space in code fence's language (fixes #98) (#99) (Francisco Ryan Tolmasky I)
- 6fd340d Upgrade: [email protected] (#100) (Teddy Katz)
- dff8e9c Fix: Emit correct endLine numbers (#88) (Paul Murray)
- 83f00d0 Docs: Suggest disabling strict in .md files (fixes #94) (#95) (Brandon Mills)
- 3b4ff95 Build: Test against Node v10 (#96) (Brandon Mills)
- 6777977 Breaking: required node version 6+ (#89) (薛定谔的猫)
- 5582fce Docs: Updating CLA link (#93) (Pablo Nevares)
- 24070e6 Build: Upgrade to [email protected] (#92) (Brandon Mills)
- 6cfd1f0 Docs: Add unicode-bom to list of unsatisfiable rules (#91) (Brandon Mills)
v1.0.0-beta.8
- a1544c2 Chore: Add .npmrc to disable creating package-lock.json (#90) (Brandon Mills)
- 47ad3f9 Chore: Replace global comment integration test with unit test (refs #81) (#85) (Brandon Mills)
- e34acc6 Fix: Add unicode-bom to unsatisfiable rules (refs #75) (#84) (Brandon Mills)
- 7c19f8b Fix: Support globals (fixes #79) (#81) (Anders D. Johnson)
v1.0.0-beta.7
- f8ba18a New: Custom eslint-skip HTML comment skips blocks (fixes #69) (#73) (Brandon Mills)
- 249904f Chore: Add test for code fences without blank lines (#72) (Brandon Mills)
- 3abc569 Chore: Un-disable strict and eol-last in repository (#71) (Brandon Mills)
- 132ea5b Chore: Add test ensuring config comments do not fall through (#70) (Brandon Mills)