Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rspack-contrib/cspell-ban-words

A list containing all banned words, which can be used in the CSpell config.
https://github.com/rspack-contrib/cspell-ban-words

cspell

Last synced: 16 days ago
JSON representation

A list containing all banned words, which can be used in the CSpell config.

Awesome Lists containing this project

README

        

# CSpell Ban Words

A list containing all banned words, such as `slave` and `blacklist`. This package can be used in the CSpell config.

## Install

```bash
npm add cspell-ban-words -D
```

## How to use

Require this package in your `cspell.config.cjs` file:

```js
const { banWords } = require("cspell-ban-words");

module.exports = {
flagWords: banWords,
};
```

## All words

See [index.cjs](./src/index.cjs).

## Reference

- [CSpell - Installation](https://cspell.org/docs/installation/)
- [CSpell - How to Forbid Words](https://cspell.org/docs/forbidden-words/)