mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 14:36:25 +00:00
docs(style-guide): Added avoid contractions/possessives (#26591)
This commit is contained in:
parent
ba38763b91
commit
988e7373b1
1 changed files with 26 additions and 0 deletions
|
@ -26,6 +26,32 @@ Second sentence on a new line.
|
||||||
And so on.
|
And so on.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Avoid contractions/possessives
|
||||||
|
|
||||||
|
Avoid:
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
don't
|
||||||
|
won't
|
||||||
|
doesn't
|
||||||
|
shouldn't
|
||||||
|
wouldn't
|
||||||
|
manager's
|
||||||
|
file's
|
||||||
|
```
|
||||||
|
|
||||||
|
Do:
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
do not
|
||||||
|
will not
|
||||||
|
does not
|
||||||
|
should not
|
||||||
|
would not
|
||||||
|
```
|
||||||
|
|
||||||
|
Avoid possessives like `manager's` or `file's`, if needed rewrite the sentence.
|
||||||
|
|
||||||
## Avoid manually ordering numbered lists
|
## Avoid manually ordering numbered lists
|
||||||
|
|
||||||
Avoid:
|
Avoid:
|
||||||
|
|
Loading…
Reference in a new issue