What is @cspell/dict-npm?
@cspell/dict-npm is a dictionary package for the CSpell spell checker. It provides a list of words related to npm packages, which helps in identifying and correcting spelling errors in npm-related terms.
What are @cspell/dict-npm's main functionalities?
Adding npm dictionary to CSpell
This feature allows you to add the npm dictionary to your CSpell configuration, enabling spell checking for npm-related terms.
{
"dictionaries": ["npm"]
}
Using npm dictionary in a project
This feature demonstrates how to configure CSpell to use the npm dictionary in a project, ensuring that npm-specific terms are recognized and checked.
{
"language": "en",
"dictionaries": ["npm"],
"dictionaryDefinitions": [
{
"name": "npm",
"path": "@cspell/dict-npm/cspell-ext.json"
}
]
}
Other packages similar to @cspell/dict-npm
@cspell/dict-python
@cspell/dict-python provides a dictionary for Python-related terms for the CSpell spell checker. It is similar to @cspell/dict-npm but focuses on Python terminology.
@cspell/dict-html
@cspell/dict-html offers a dictionary for HTML-related terms for the CSpell spell checker. It is comparable to @cspell/dict-npm but is tailored for HTML vocabulary.
@cspell/dict-typescript
@cspell/dict-typescript supplies a dictionary for TypeScript-related terms for the CSpell spell checker. It is akin to @cspell/dict-npm but is designed for TypeScript-specific terms.
CSpell NPM Dictionary
NPM dictionary for CSpell.
This is a pre-built dictionary for use with CSpell.
Requirements
Installation
Global Install and add to CSpell global settings.
npm install -g @cspell/dict-npm
cspell link add @cspell/dict-npm
Uninstall from CSpell
cspell link remove @cspell/dict-npm
Manual Installation
The cspell-ext.json
file in this package should be added to the import section in your cspell.json file.
{
"import": ["@cspell/dict-npm/cspell-ext.json"],
}
Dictionary Development
See: How to Create a New Dictionary
License
MIT
Some packages may have other licenses included.