-
-
Notifications
You must be signed in to change notification settings - Fork 764
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
38 lines (38 loc) · 1.33 KB
/
.markdownlint.jsonc
File metadata and controls
38 lines (38 loc) · 1.33 KB
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
33
34
35
36
37
38
// A part of NonVisual Desktop Access (NVDA)
// Copyright (C) 2025 NV Access Limited
// This file may be used under the terms of the GNU General Public License, version 2 or later, as modified by the NVDA license.
// For full terms and any additional permissions, see the NVDA license file: https://github.com/nvaccess/nvda/blob/master/copying.txt
//
// Markdown linting rules.
{
// Use ATX style headings. E.g.
// # This is a heading
"heading-style": {
"style": "atx"
},
// Don't complain about using tabs in markdown
"hard_tab": false,
// Don't complain about lines being too long
"line-length": false,
// Only complain about repeated headings in the same part of the document outline
// Needed for the changelog
// We could consider enabling this on a file-by-file basis
"no-duplicate-heading": {
"siblings_only": true
},
// Several of our markdown files include trailing punctuation in headings
"no-trailing-punctuation": false,
// Rule is incompatible with the anchor style we use in the user guide
"link-fragments": false,
// Many of our code blocks lack a language
// This should probably be fixed gradually
"fenced-code-language": false,
"ul-style": {
"style": "asterisk"
},
"table-column-style": {
// MD060: Tables use single padding around the column delimiters.
// e.g. | Column 1 | Column 2 |
"style": "compact"
}
}