summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/remark-parse/lib/defaults.js
blob: 79f26f2a348b40d2400e924678950d4fedde0177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * @author Titus Wormer
 * @copyright 2015-2016 Titus Wormer
 * @license MIT
 * @module remark:parse:defaults
 * @fileoverview Default options for `parse`.
 */

'use strict';

/* eslint-env commonjs */

module.exports = {
    'position': true,
    'gfm': true,
    'yaml': true,
    'commonmark': false,
    'footnotes': false,
    'pedantic': false,
    'breaks': false
};