eslint-plugin-censor
v1.5.3
Published
The plugin will prevent you from using swear pejoratives and abuse words
Downloads
992
Maintainers
Readme
eslint-plugin-censor
The plugin will prevent you from using swear pejoratives and abuse words.
🇺🇦 Help Ukraine
I woke up on my 26th birthday at 5 am from the blows of russian missiles. They attacked the city of Kyiv, where I live, as well as the cities in which my family and friends live. Now my country is a war zone.
We fight for democratic values, freedom, for our future! Once again Ukrainians have to stand against evil, terror, against genocide. The outcome of this war will determine what path human history is taking from now on.
💛💙 Help Ukraine! We need your support! There are dozen ways to help us, just do it!
Table of Contents
Requirements
To use library you need to have node and npm installed in your machine:
- node
>=10
- npm
>=6
Package is continuously tested on darwin, linux and win32 platforms. All active and maintenance LTS node releases are supported.
Installation
To install the library run the following command
npm i --save-dev eslint-plugin-censor
Usage
After installation, add plugin to eslint config:
{
"extends": [...],
"env": {...},
"plugins": [ "censor" ],
"rules": {...}
}
And enable rule:
{
"extends": [...],
"env": {...},
"plugins": [ "censor" ],
"rules": {
...
"censor/no-swear": 2
}
}
Now you can check your courtesy by running eslint.
Sources
- wiktionary
- https://github.com/MauriceButler/badwords
- https://github.com/LDNOOBW/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words
- https://github.com/first20hours/google-10000-english
Contribute
Make the changes to the code and tests. Then commit to your branch. Be sure to follow the commit message conventions. Read Contributing Guidelines for details.