Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cspell/dict-makefile

Package Overview
Dependencies
Maintainers
1
Versions
2
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.

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
270K
decreased by-59.98%
Maintainers
1
Weekly downloads
 
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

FAQs

Package last updated on 11 Oct 2024

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc