-
Notifications
You must be signed in to change notification settings - Fork 3
/
.mdl_style.rb
29 lines (22 loc) · 1.04 KB
/
.mdl_style.rb
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
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: 2021-2024 The Foundation for Public Code <info@publiccode.net>, https://standard.publiccode.net/AUTHORS
# A detailed description of the rules is available at
# https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
# Lint markdown using the Markdownlint gem with the default ruleset
all
# except for:
# MD007 Unordered list indentation: we allow sub-lists to also have bullets
exclude_rule 'MD007'
# MD013 Line length: we allow long lines
exclude_rule 'MD013'
# MD029 Ordered list item prefix: we allow lists to be sequentially numbered
exclude_rule 'MD029'
# Temporary hack to deal with weasyprint, see commit 831def8c3382
# MD033 Inline HTML: hack in criteria/code-in-the-open.md line 53
exclude_rule 'MD033'
# Hack to deal with no way to exclude liquid code block
# the pipe ("|") in the liquid code is incorrectly identified as a table
# MD055 Table row doesn't begin/end with pipes
# MD057 Table has missing or invalid header separation
exclude_rule 'MD055'
exclude_rule 'MD057'