summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/lib/index.js
blob: 890425ff8aefa073ad22d19e53dcb9b6c8554f3f (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";

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

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