Socket
Socket
Sign inDemoInstall

@schoero/cspell-config

Package Overview
Dependencies
0
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @schoero/cspell-config

Personal cspell config


Version published
Maintainers
1
Created

Readme

Source

cspell-config

Personal cspell config

Key features

  • Spell checks all files
  • Supports American english and german languages

Installation

npm i --save-dev @schoero/cspell-config

Usage

Create a .cspell.json file with the following content:

{
  "import": [
    "@schoero/cspell-config"
  ],
  "words": [
    // Add your custom words here
  ]
}

VSCode integration

For highlighting spelling errors in VSCode, install the Code Spell Checker extension.

To recommend the extension in your repository create a .vscode/extensions.json with the following content:

{
  "recommendations": [
    "streetsidesoftware.code-spell-checker"
  ]
}

If you want to have spellcheck scripts, you can use something like this in the package.json:

{
  "scripts": {
    "spellcheck": "node_modules/.bin/cspell lint",
    "spellcheck:ci": "npm run spellcheck -- --no-progress"
  }
}

FAQs

Last updated on 10 Nov 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc