muescha / remark-lint-prohibited-strings

remark-lint plugin to prohibit specified strings in markdown files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

remark-lint-prohibited-strings

remark-lint plugin to prohibit specified strings in markdown files

Example configuration:

  [
    require("remark-lint-prohibited-strings"),
    [
      { no: "End-Of-Life", yes: "End-of-Life" },
      { no: "End-of-life", yes: "End-of-Life" },
      { no: 'gatsby', yes: "Gatsby", ignoreNextTo: "-" },
      { no: "Github", yes: "GitHub" },
      { no: "Javascript", yes: "JavaScript" },
      { no: "Node.JS", yes: "Node.js" },
      { no: "Rfc", yes: "RFC" },
      { no: "[Rr][Ff][Cc]\\d+", yes: "RFC <number>" },
      { no: "rfc", yes: "RFC" },
      { no: "UNIX", yes: "Unix" },
      { no: "unix", yes: "Unix" },
      { no: "v8", yes: "V8" }
    ]
  ]

no is a string specifying the string you wish to prohibit. Regular expression characters are respected. If no is omitted but yes is supplied, then the no string will be inferred to be any case-insensitive match of the yes string that is not a case-sensitive match of the yes string. In other words, { yes: 'foo' } means that foo is permitted, but Foo and FOO are prohibited.

yes is an optional string specifying what someone will be told to use instead of the matched no value.

ignoreNextTo is a string that will make a prohibited string allowable if it appears next to that string. For example, in the configuration above, gatsby will be flagged as a problem and the user will be told to use Gatsby instead. However, gatsby-plugin will not be flagged because '-' is included in ignoreNextTo for that rule.

About

remark-lint plugin to prohibit specified strings in markdown files

License:MIT License


Languages

Language:JavaScript 100.0%