
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@cspell/dict-makefile
Advanced tools
@cspell/dict-makefile is a dictionary extension for the CSpell spell checker that provides support for Makefile-specific terminology. It helps developers ensure that their Makefile scripts are free from spelling errors by recognizing and validating common terms used in Makefiles.
Makefile Terminology Support
This feature allows CSpell to recognize and validate Makefile-specific terms. The code sample demonstrates how to configure CSpell to use the Makefile dictionary and validate a simple Makefile script.
const cspell = require('cspell');
const settings = {
language: 'en',
dictionaries: ['makefile'],
};
const text = 'all: build\n\t@echo Building project...';
const result = cspell.validateText(text, settings);
console.log(result);
@cspell/dict-python is a dictionary extension for CSpell that provides support for Python-specific terminology. Similar to @cspell/dict-makefile, it helps developers ensure that their Python code is free from spelling errors by recognizing and validating common Python terms.
@cspell/dict-html is a dictionary extension for CSpell that provides support for HTML-specific terminology. It helps developers ensure that their HTML documents are free from spelling errors by recognizing and validating common HTML terms, similar to how @cspell/dict-makefile works for Makefiles.
Makefile dictionary for cspell.
This is a pre-built dictionary for use with CSpell.
Tool | Version |
---|---|
cspell | >= 8 |
Code Spell Checker - Visual Studio Code | >= 4 |
This package is bundled with CSpell.
Add the following to your VSCode settings:
.vscode/settings.json
{
"cSpell.dictionaries": ["makefile"],
}
cspell.json
{
"dictionaries": ["makefile"],
}
cspell.config.yaml
dictionaries:
- makefile
[!NOTE] This package is bundled with CSpell.
Please help correct any mistakes in the dictionaries.
See: Contributing
Special thanks to all of our amazing contributors!
See: How to Create a New Dictionary
MIT
Some packages may have other licenses included.
Brought to you by
Street Side Software
FAQs
Makefile dictionary for cspell.
We found that @cspell/dict-makefile demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.