File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -133,5 +133,5 @@ rules:
133
133
# Use this rule to forbid non-explictly typed truthy values other than `true` and `false`, for example `YES`, `False` and `off`.
134
134
# https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.truthy
135
135
truthy:
136
- level: warning
136
+ allowed-values: ['true', 'false']
137
137
...
Original file line number Diff line number Diff line change 9
9
# SPDX-License-Identifier: CC-BY-SA-4.0 OR LicenseRef-Apache-2.0-If-Not-Used-In-Template-Projects
10
10
11
11
# Inherit Markdownlint rules
12
- default : True
12
+ default : true
13
13
14
14
# Only allow consistent un-ordered list bullet style(allow alternations
15
15
# in sub-levels)
@@ -25,20 +25,20 @@ no-trailing-spaces:
25
25
br_spaces : 2
26
26
27
27
# Disable line length limitation(not suitable with CJK context)
28
- line-length : False
28
+ line-length : false
29
29
30
30
# Allow missing padding blank line between the heading markup and the context
31
- blanks-around-headings : False
31
+ blanks-around-headings : false
32
32
33
33
# Allow duplicated non-sibling heading text
34
34
no-duplicate-heading :
35
- siblings_only : True
35
+ siblings_only : true
36
36
37
37
# Allow missing padding blank line between a list and its context
38
- blanks-around-lists : False
38
+ blanks-around-lists : false
39
39
40
40
# Allow using raw HTML markups as workarounds of deficiencies of Markdown
41
- no-inline-html : False
41
+ no-inline-html : false
42
42
43
43
# Allow using YAML front matter, while not require the definition of the
44
44
# `title` property
You can’t perform that action at this time.
0 commit comments