Skip to content

Commit 53e1ca6

Browse files
authored
docs(renovate style guide): avoid manually ordering numbered lists (#26445)
1 parent 3a8574b commit 53e1ca6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/development/style-guide.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,24 @@ Second sentence on a new line.
2121
And so on.
2222
```
2323

24+
## Avoid manually ordering numbered lists
25+
26+
Avoid:
27+
28+
```markdown
29+
1. First item
30+
2. Second item
31+
3. Third item
32+
```
33+
34+
Do:
35+
36+
```markdown
37+
1. First item
38+
1. Second item
39+
1. Third item
40+
```
41+
2442
## Avoid punctuation at the end of list items
2543

2644
In Markdown files, avoid punctuation at the end of a list item.

0 commit comments

Comments
 (0)