File tree Expand file tree Collapse file tree 2 files changed +19
-15
lines changed Expand file tree Collapse file tree 2 files changed +19
-15
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ default: true
4
4
MD013 : false # MD013/line-length Line length
5
5
MD024 : false # MD024/no-duplicate-heading/no-duplicate-header Multiple headings with the same content
6
6
MD026 : false # MD026/no-trailing-punctuation Trailing punctuation in heading
7
+ MD053 : false # MD053/link-image-reference-definitions Link and image reference definitions should be needed
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: MIT
2
2
---
3
+ ignore : |
4
+ .git/
5
+ .licenses/
6
+ node_modules/
7
+
3
8
extends : default
4
9
5
10
rules :
6
- empty-values : enable
11
+ braces :
12
+ min-spaces-inside : 0
13
+ max-spaces-inside : 0
14
+ brackets :
15
+ min-spaces-inside : 0
16
+ max-spaces-inside : 0
17
+ comments :
18
+ min-spaces-from-content : 1
7
19
document-start : disable
8
- line-length : disable
20
+ empty-values : enable
9
21
indentation :
10
22
spaces : 2
11
23
indent-sequences : false
24
+ line-length : disable
25
+ quoted-strings :
26
+ quote-type : single
27
+ required : false
12
28
truthy :
13
29
allowed-values :
14
30
- ' true'
15
31
- ' false'
16
32
- ' on'
17
- quoted-strings :
18
- quote-type : single
19
- required : false
20
- braces :
21
- min-spaces-inside : 1
22
- max-spaces-inside : 1
23
- brackets :
24
- min-spaces-inside : 1
25
- max-spaces-inside : 1
26
-
27
- ignore : |
28
- .licenses
29
- node_modules/
You can’t perform that action at this time.
0 commit comments