summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/remark-stringify/lib/defaults.js
blob: 32d4d27c903e777761542c7d1cf32b21256c5b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
 * @author Titus Wormer
 * @copyright 2015-2016 Titus Wormer
 * @license MIT
 * @module remark:stringify:defaults
 * @fileoverview Default options for `stringify`.
 */

'use strict';

/* eslint-env commonjs */

module.exports = {
    'gfm': true,
    'commonmark': false,
    'pedantic': false,
    'entities': 'false',
    'setext': false,
    'closeAtx': false,
    'looseTable': false,
    'spacedTable': true,
    'incrementListMarker': true,
    'fences': false,
    'fence': '`',
    'bullet': '-',
    'listItemIndent': 'tab',
    'rule': '*',
    'ruleSpaces': true,
    'ruleRepetition': 3,
    'strong': '*',
    'emphasis': '_'
};