-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yml
More file actions
49 lines (39 loc) · 1.4 KB
/
.markdownlint.yml
File metadata and controls
49 lines (39 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
48
49
# SPDX-FileCopyrightText: Copyright (C) 2022 Opal Health Informatics Group at the Research Institute of the McGill University Health Centre <john.kildea@mcgill.ca>
#
# SPDX-License-Identifier: MIT
# https://github.com/DavidAnson/markdownlint?tab=readme-ov-file#rules--aliases
line-length: false
ul-indent:
indent: 4
# Allow inline HTML to support image captions
no-inline-html: false
# Allow screenshots to have no alt text
no-alt-text: false
# Allow bare URLs since we use magiclink to convert bare URLs automatically to links
no-bare-urls: false
# Need to disable in order to support PyMdown Tabbed extension
# See: https://facelessuser.github.io/pymdown-extensions/extensions/tabbed/
code-block-style: false
# Allow same heading name if the parent is different
no-duplicate-heading:
siblings_only: true
max-one-sentence-per-line:
# ignore admonition syntax
# see: https://github.com/aepfli/markdownlint-rule-max-one-sentence-per-line/pull/52/files#r1579994724
ignored_words:
- "ie"
- "i.e"
- "eg"
- "e.g"
- "etc"
- "ex"
- "!!"
- "??"
- "vs"
# mkdocs-material-linter
# see: https://github.com/mensfeld/mkdocs-material-linter?tab=readme-ov-file#provided-rules
material-meta-tags: false
# disabled due to code blocks with more than 3 backticks
# https://github.com/mensfeld/mkdocs-material-linter/issues/24
material-blank-lines-spacing: false
material-code-block-syntax: false