preamble-re-...

The ... preamble header doesn't contain "standard" or similar words.

Examples

error[preamble-re-title]: preamble header `title` should not contain `standard` (or similar words.)
 --> eip-20.md:3:7
  |
3 | title: Token Standard
  |       ^^^^^^^^^^^^^^^ prohibited pattern was matched
  |
  = info: the pattern in question: `(?i)standar\w*\b`
error[preamble-re-description]: preamble header `description` should not contain `standard` (or similar words.)
 --> eip-20.md:3:7
  |
3 | description: Token Standard
  |             ^^^^^^^^^^^^^^^ prohibited pattern was matched
  |
  = info: the pattern in question: `(?i)standar\w*\b`

Explanation

The preamble-re-... family of lints prevent the use of "standard" or similar words in the title and description front matter (or preamble) fields.

Nearly every proposal submitted to the EIPs repository is a standard of some type, so repeating the word in every document is unnecessary. Instead, this lint encourages authors to use the limited space for more meaningful content.