aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.markdownlint.json
blob: 05965131e4112d9e1545450231fc1e9f388458a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"default": true,
	"blanks-around-fences": false,
	"blanks-around-lists": false,
	"first-line-heading": false,
	"line-length": false,
	"no-hard-tabs": false,
	"no-inline-html": {
		"allowed_elements": ["br", "img", "kbd"]
	},
	"no-multiple-blanks": {
		"maximum": 2
	},
	"no-trailing-spaces": true,
	"ul-indent": false,
	"ul-style": {
		"style": "consistent"
	}
}