Skip to content

Commit

Permalink
Disable some eipw lints (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWilsn authored Nov 23, 2023
1 parent f76969b commit d37ccd2
Showing 1 changed file with 25 additions and 23 deletions.
48 changes: 25 additions & 23 deletions config/eipw.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,11 @@ mode = "excludes"
pattern = '(?i)erc[\s]*[0-9]+'
message = "proposals must be referenced with the form `ERC-N` (not `ERCN` or `ERC N`)"

[lints.markdown-refs]
kind = "markdown-proposal-ref"
prefix = "erc-"
suffix = ".md"
## TODO: Disabled because half the files are in another repository.
# [lints.markdown-refs]
# kind = "markdown-proposal-ref"
# prefix = "erc-"
# suffix = ".md"

[lints.preamble-req-withdrawal-reason]
kind = "preamble-required-if-eq"
Expand All @@ -96,25 +97,26 @@ names = [
"withdrawal-reason",
]

[lints.preamble-requires-status]
prefix = "erc-"
suffix = ".md"
kind = "preamble-requires-status"
requires = "requires"
status = "status"
flow = [
[
"Draft",
"Stagnant",
],
["Review"],
["Last Call"],
[
"Final",
"Withdrawn",
"Living",
],
]
## TODO: Disabled because half the files are in another repository.
# [lints.preamble-requires-status]
# prefix = "erc-"
# suffix = ".md"
# kind = "preamble-requires-status"
# requires = "requires"
# status = "status"
# flow = [
# [
# "Draft",
# "Stagnant",
# ],
# ["Review"],
# ["Last Call"],
# [
# "Final",
# "Withdrawn",
# "Living",
# ],
# ]

[lints.markdown-order-section]
kind = "markdown-section-order"
Expand Down

0 comments on commit d37ccd2

Please sign in to comment.