Skip to content

Commit fca3506

Browse files
committed
Update list levels
1 parent 7021994 commit fca3506

1 file changed

Lines changed: 76 additions & 76 deletions

File tree

docs/style-guides/git/README.md

Lines changed: 76 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -5,108 +5,108 @@
55

66
## Commits
77

8-
* All commits should follow the [seven rules][git-seven-rules] of a [Git][git] commit message:
8+
All commits should follow the [seven rules][git-seven-rules] of a [Git][git] commit message:
99

10-
1. Use the [imperative mood][imperative-mood] in the [Git][git] commit subject line.
10+
1. Use the [imperative mood][imperative-mood] in the [Git][git] commit subject line.
1111

12-
``` text
13-
# Do not...
14-
Fixed Markdown lint errors
15-
```
12+
``` text
13+
# Do not...
14+
Fixed Markdown lint errors
15+
```
1616

17-
``` text
18-
# Do...
19-
Fix Markdown lint errors
20-
```
17+
``` text
18+
# Do...
19+
Fix Markdown lint errors
20+
```
2121

22-
1. Capitalize the first word of the subject line.
22+
1. Capitalize the first word of the subject line.
2323

24-
``` text
25-
# Do not...
26-
fix Markdown lint errors
27-
```
24+
``` text
25+
# Do not...
26+
fix Markdown lint errors
27+
```
2828

29-
``` text
30-
# Do...
31-
Fix Markdown lint errors
32-
```
29+
``` text
30+
# Do...
31+
Fix Markdown lint errors
32+
```
3333

34-
1. Do __not__ end the subject line with a period.
34+
1. Do __not__ end the subject line with a period.
3535

36-
``` text
37-
# Do not...
38-
Fix Markdown lint errors.
39-
```
36+
``` text
37+
# Do not...
38+
Fix Markdown lint errors.
39+
```
4040

41-
``` text
42-
# Do...
43-
Fix Markdown lint errors
44-
```
41+
``` text
42+
# Do...
43+
Fix Markdown lint errors
44+
```
4545

46-
1. Separate the subject line from the body with a blank line.
46+
1. Separate the subject line from the body with a blank line.
4747

48-
``` text
49-
# Do not...
50-
This is the subject line
51-
This is the body body body body body body body body body body body body
52-
body body body body body body body body body body body body body body
53-
```
48+
``` text
49+
# Do not...
50+
This is the subject line
51+
This is the body body body body body body body body body body body body
52+
body body body body body body body body body body body body body body
53+
```
5454

55-
``` text
56-
# Do...
57-
This is the subject line
55+
``` text
56+
# Do...
57+
This is the subject line
5858
59-
This is the body body body body body body body body body body body body
60-
body body body body body body body body body body body body body body
61-
```
59+
This is the body body body body body body body body body body body body
60+
body body body body body body body body body body body body body body
61+
```
6262

63-
1. Try to limit the subject line to `50` characters.
63+
1. Try to limit the subject line to `50` characters.
6464

65-
``` text
66-
# Do not...
67-
This is the subject line line line line line line line line line line line line line line
68-
```
65+
``` text
66+
# Do not...
67+
This is the subject line line line line line line line line line line line line line line
68+
```
6969

70-
``` text
71-
# Do...
72-
This is the subject line
73-
```
70+
``` text
71+
# Do...
72+
This is the subject line
73+
```
7474

75-
1. Use the body to explain the *what* and *why*, and not the *how*.
75+
1. Use the body to explain the *what* and *why*, and not the *how*.
7676

77-
``` text
78-
# Do not...
79-
Change Markdown heading style
77+
``` text
78+
# Do not...
79+
Change Markdown heading style
8080
81-
Update various Markdown files to stop lint errors. Change the heading
82-
style from `===` to `#`.
83-
```
81+
Update various Markdown files to stop lint errors. Change the heading
82+
style from `===` to `#`.
83+
```
8484

85-
``` text
86-
# Do...
87-
Change Markdown heading style
85+
``` text
86+
# Do...
87+
Change Markdown heading style
8888
89-
Change the heading style to ensure consistency with `remark` output.
90-
This ensures that all Markdown files are all of the same style, thus
91-
reducing the number of edge cases Markdown parsers need to consider.
92-
```
89+
Change the heading style to ensure consistency with `remark` output.
90+
This ensures that all Markdown files are all of the same style, thus
91+
reducing the number of edge cases Markdown parsers need to consider.
92+
```
9393

94-
1. Try to wrap the body at `72` characters.
94+
1. Try to wrap the body at `72` characters.
9595

96-
``` text
97-
# Do not...
98-
This is the subject line
96+
``` text
97+
# Do not...
98+
This is the subject line
9999
100-
This is the body body body body body body body body body body body body body body body body body body body body body body body body body body
101-
```
100+
This is the body body body body body body body body body body body body body body body body body body body body body body body body body body
101+
```
102102

103-
``` text
104-
# Do...
105-
This is the subject line
103+
``` text
104+
# Do...
105+
This is the subject line
106106
107-
This is the body body body body body body body body body body body body
108-
body body body body body body body body body body body body body body
109-
```
107+
This is the body body body body body body body body body body body body
108+
body body body body body body body body body body body body body body
109+
```
110110

111111
---
112112

0 commit comments

Comments
 (0)