a detail you probably didn't know: nowhere in any #curl documentation do we use the word "very". It is a banned word enforced by a CI check. This rule encourages us to rewrite and instead use more appropriate words. Makes us write better English.
I can tell you that this bites me just about every time I write more than two sentences. Then I go back, edit and push a fixup commit and hope that I learned something. Again.
@bagder I also block "just" this way, and "easy"
@derickr @bagder From my code review experience of some Go projects I might need to follow your strict standards and ban:
- Super
- Blazing
- Fast
- Better
And their combinations

@sharlatan @bagder I have a list in my .vimrc:

highlight badWords ctermbg=red ctermfg=white
fun! HiBadWords()
match badWords /\c\<\(obviously\|basically\|simply\|of\scourse\|clearly\|just\|everyone\sknows\|however\|so,\|easy\|PHP\sUnit\)\>/
endfun
autocmd InsertEnter *.txt call HiBadWords()
autocmd InsertLeave *.txt call HiBadWords()