diff --git a/docs/development/style-guide.md b/docs/development/style-guide.md
index 82c5939dc4ee93eb55327a2e76bf07198d5b7da3..628697993fd0d809a16eed66ac34c0a146e7bb81 100644
--- a/docs/development/style-guide.md
+++ b/docs/development/style-guide.md
@@ -21,6 +21,24 @@ Second sentence on a new line.
 And so on.
 ```
 
+## Avoid manually ordering numbered lists
+
+Avoid:
+
+```markdown
+1. First item
+2. Second item
+3. Third item
+```
+
+Do:
+
+```markdown
+1. First item
+1. Second item
+1. Third item
+```
+
 ## Avoid punctuation at the end of list items
 
 In Markdown files, avoid punctuation at the end of a list item.