Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@cspell/dict-makefile

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cspell/dict-makefile

Makefile dictionary for cspell.

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created

What is @cspell/dict-makefile?

@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.

What are @cspell/dict-makefile's main functionalities?

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);

Other packages similar to @cspell/dict-makefile

Keywords

cspell

FAQs

Package last updated on 09 Jul 2025

Did you know?

Socket

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