This rule checks for and warns against the use of ellipses (three consecutive periods "...") in text. The rule is based on Google's developer documentation style guide, which recommends avoiding ellipses in most situations.
The motivation behind this rule is that ellipses can make writing feel informal or create unnecessary ambiguity. In technical writing and documentation, clarity and directness are preferred over trailing thoughts or omitted content that ellipses might suggest. Ellipses can also be interpreted differently across cultures and contexts, potentially causing confusion for readers.
Examples
Will flag:
- "The system will process the request..." ❌
- "Users can configure settings..." ❌
- "Follow these steps..." ❌
Should be replaced with:
- "The system will process the request." ✅
- "Users can configure settings." ✅
- "Follow these steps:" ✅
Note that this rule will catch any instance of three consecutive periods, regardless of context, and suggest removing them for clearer, more direct writing.