Skip to content

eschaefer/eslint-plugin-spellingbee

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-plugin-spellingbee

Catches common misspellings that can result result in nasty bugs.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-spellingbee:

$ npm install eslint-plugin-spellingbee --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-spellingbee globally.

Usage

Add spellingbee to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": ["spellingbee"]
}

Then configure the rules you want to use under the rules section.

{
  "rules": {
    "spellingbee/no-misspelled-length": 2
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published