3.3.0 ⢠Published 3 years ago
extra-eyes v3.3.0
š extra-eyes
Catch insensitive, inconsiderate writing, and bad spelling.
š“ A fork of https://github.com/get-alex/alex MIT Ā© Titus Wormer
This tool also uses:
- retext-diacritics
- retext-indefinite-article
- retext-redundant-acronyms
- retext-simplify
- retext-repeated-words
- retext-passive
- retext-spell
Install:
npm install extra-eyesRun from your terminal and point at folder of files:
extra-eyes pages/Create your own dictionary mydictionary.dic and then pass it to extra-eyes:
extra-eyes pages/ --dict=mydictionary.dicAdd it to package.json:
{
  "scripts": {
    "test-content": "extra-eyes pages/ --dict=mydictionary.dic"
  }
}Make Travis (.travis.yml) only run extra-eyes on the diff:
script:
  - npm test
  - extra-eyes pages/ --dict=mydictionary.dic --diff