summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/lib/index.js
blob: e27aa162f98cb02f7ceb8878580520513e59359c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * @fileoverview Enables the processor for Markdown file extensions.
 * @author Brandon Mills
 */

"use strict";

const processor = require("./processor");

module.exports = {
    processors: {
        ".markdown": processor,
        ".mdown": processor,
        ".mkdn": processor,
        ".md": processor
    }
};