Socket
Socket
Sign inDemoInstall

yaspeller

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yaspeller

Search tool typos in the text, files and websites


Version published
Weekly downloads
2.8K
decreased by-23.44%
Maintainers
1
Weekly downloads
 
Created
Source

yaspeller

NPM version Build Status Coverage Status Dependency Status devDependency Status

This README is also available in Russian.

Search tool typos in the text, files and websites.

Used API Yandex.Speller.

yaspeller

Installation

npm install yaspeller -g

Using CLI

yaspeller [options] <file-or-directory-or-link...>

Examples

  • yaspeller README.md — search typos in the file.
  • yaspeller -e ".md,.html,.js" ./texts/ — finding typos in files in the folder.
  • yaspeller http://www.yandex.ru/ — search typos in the page.
  • yaspeller http://bem.info/sitemap.xml — search typos at the addresses specified in the sitemap.xml.

Options

-f, --format <value>

Formats: plain, html, markdown или auto.
Default: auto.

-l, --lang <value>

Languages: en, ru or uk.
Default: en,ru.

-c, --config <path>

Configuration file path.

-e, --file-extensions <value>

Set file extensions to search for files in a folder.
Example: .md,.htm,.txt.

--dictionary <file>

JSON file for own dictionary.

[
    "someword1",
    "someword2",
    "someword3"
]
--report <type>

Set type of report: console, html or json.
Default: console
Example: console,html,custom_report.js

--by-words

Do not use a dictionary environment (context) during the scan.
This is useful in cases where the service is transmitted to the input of a list of individual words.

--find-repeat-words

Highlight repetitions of words, consecutive. For example, I flew to to to Cyprus.

--flag-latin

Celebrate words, written in Latin, as erroneous.

--ignore-tags <tags>

Ignore HTML tags.
Default: code,kbd,object,samp,script,style,var

--ignore-capitalization

Ignore the incorrect use of UPPERCASE / lowercase letters, for example, in the word moscow.

--ignore-digits

Ignore words with numbers, such as avp17h4534.

--ignore-latin

Ignore words, written in Latin, for example, madrid.

--ignore-roman-numerals

Ignore Roman numerals I, II, III, ....

--ignore-uppercase

Ignore words written in capital letters.

--ignore-urls

Ignore Internet addresses, email addresses and filenames.

--max-requests <value>

Max count of requests at a time.
Default: 2.

--no-colors

Clean output without colors.

--only-errors

Output only errors.

--debug

Debug mode.

Configuration

npm install yaspeller --save-dev

Add the text in package.json / scripts:
"yaspeller": "./node_modules/.bin/yaspeller .",

To run the linter:
npm run yaspeller

Yaspeller is configured using .yaspellerrc JSON file at the root of the project.

{
  "excludeFiles": [
    ".git",
    "libs",
    "node_modules",
    "yaspeller"
  ],
  "lang": "ru",
  "fileExtensions": [
    ".md",
    ".js",
    ".css"
  ],
  "dictionary": [
    "someword1"
  ]
}

Advanced example:

{
  "excludeFiles": [
    ".git",
    "yaspeller",
    "node_modules",
    "libs"
  ],
  "format": "html",
  "lang": "en",
  "fileExtensions": [
    ".md",
    ".js",
    ".css"
  ],
  "report": ["console", "html"],
  "dictionary": [
    "someword1"
  ],
  "ignoreTags": ["code", "script"],
  "ignoreUrls": true,
  "findRepeatWords": true,
  "maxRequests": 5
}
Property TypeDetails
formatString--format
langString--lang
excludeFilesArray
fileExtensionsArray--file-extension
dictionaryArray--dictionary
reportArray--report
byWordsBoolean--by-words
findRepeatWordsBoolean--find-repeat-words
flagLatinBoolean--flag-latin
ignoreTagsArray--ignore-tags
ignoreCapitalizationBoolean--ignore-capitalization
ignoreDigitsBoolean--ignore-digits
ignoreLatinBoolean--ignore-latin
ignoreRomanNumeralsBoolean--ignore-roman-numerals
ignoreUppercaseBoolean--ignore-uppercase
ignoreUrlsBoolean--ignore-urls
maxRequestsBoolean--max-requests

License

MIT License

Keywords

FAQs

Package last updated on 10 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc