Skip to content

Commit 18d1573

Browse files
committed
Merge remote-tracking branch 'origin/5.next' into docs/lock-component
2 parents c39db63 + 5756f27 commit 18d1573

269 files changed

Lines changed: 15613 additions & 9614 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ end_of_line = crlf
1616
[*.yml]
1717
indent_size = 2
1818

19+
[*.js]
20+
indent_size = 2
21+
1922
[Makefile]
2023
indent_style = tab
2124

.github/.markdownlint-cli2.jsonc

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"config": {
3+
"default": true,
4+
"heading-increment": true,
5+
"no-hard-tabs": true,
6+
"no-multiple-blanks": true,
7+
"line-length": false,
8+
"commands-show-output": true,
9+
"blanks-around-headings": true,
10+
"heading-start-left": true,
11+
"no-duplicate-heading": false,
12+
"single-h1": false,
13+
"no-trailing-punctuation": false,
14+
"no-blanks-blockquote": false,
15+
"list-marker-space": true,
16+
"blanks-around-fences": true,
17+
"blanks-around-lists": true,
18+
"no-inline-html": {
19+
"allowed_elements": [
20+
"Badge",
21+
"div",
22+
"span",
23+
"br",
24+
"style",
25+
"details",
26+
"summary",
27+
"table",
28+
"thead",
29+
"tbody",
30+
"tr",
31+
"th",
32+
"td",
33+
"img",
34+
"a",
35+
"svg",
36+
"path",
37+
"figure",
38+
"p",
39+
"colgroup",
40+
"col",
41+
"strong",
42+
"sup",
43+
"section",
44+
"hr",
45+
"ol",
46+
"ul",
47+
"li",
48+
"em",
49+
"code"
50+
]
51+
},
52+
"no-bare-urls": true,
53+
"fenced-code-language": true,
54+
"first-line-heading": false,
55+
"code-block-style": false,
56+
"code-fence-style": {
57+
"style": "backtick"
58+
},
59+
"emphasis-style": {
60+
"style": "asterisk"
61+
},
62+
"strong-style": {
63+
"style": "asterisk"
64+
},
65+
"spaces-after-emphasis-marker": true,
66+
"spaces-after-code-fence-info": true,
67+
"spaces-inside-emphasis-markers": true,
68+
"spaces-inside-code-span-elements": true,
69+
"single-trailing-newline": true,
70+
"link-fragments": false,
71+
"table-pipe-style": "leading_and_trailing",
72+
"table-column-count": false,
73+
"table-column-style": false,
74+
"descriptive-link-text": false,
75+
"no-emphasis-as-heading": false
76+
},
77+
"customRules": [
78+
"./markdownlint-rules/no-space-after-fence.cjs"
79+
],
80+
"ignores": [
81+
"node_modules/**"
82+
]
83+
}

0 commit comments

Comments
 (0)