Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/rspack-contrib/cspell-ban-words
- Owner: rspack-contrib
- License: mit
- Created: 2024-03-27T14:02:13.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-29T09:49:52.000Z (3 months ago)
- Last Synced: 2024-12-04T22:03:50.187Z (22 days ago)
- Topics: cspell
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)