An ESLint formatter that outputs linting results as Markdown, suitable for use with ESLint CLI, grunt-eslint, or programmatic usage. Current stable version is 1.0.4, last updated July 2017. The package has not seen active development since then, and only supports ESLint 2.x and 3.x (with potential issues on newer Node). It depends on lodash. Key differentiators: generates human-readable Markdown reports with summary statistics and sorting, but is largely obsolete due to lack of updates and ESLint's built-in formatter improvements.
npm install eslint-formatter-markdownVerified import paths — ran on the pinned version, not inferred.
Shows how to generate Markdown-formatted ESLint output via CLI and programmatically using CommonJS require.
Consider using ESLint's built-in formatters or a more maintained third-party formatter.
Use `--format ./node_modules/eslint-formatter-markdown/markdown.js` or similar.
Use ESLint's built-in formatter 'stylish' or a more recent formatter like 'eslint-formatter-table'.
Run `npm install eslint-formatter-markdown --save-dev` and ensure the require path is correct.
Use `--format node_modules/eslint-formatter-markdown/markdown.js`.
Use `const formatter = require('eslint-formatter-markdown');`