🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

lint-text

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

lint-text

Convenience wrapper for ESLint’s CLIEngine.prototype.executeOnText()

1.0.0
Source
npm
Version published
Weekly downloads
5
150%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Standard - JavaScript Style Guide

lint-text

Convenience wrapper for ESLint’s CLIEngine.prototype.executeOnText()

Instead of

const { CLIEngine } = require('eslint')
const cli = new CLIEngine({ some: 'options' })
cli.executeOnText('some', 'texts')

Do

const lintText = require('lint-text')
lintText({ some: 'options' }, ['some', 'texts'])

Features

  • one line less
  • no new
  • tested better than patience

API

lintText(options, texts)

  • options:
    will be passed to the CLIEngine constructor (ESLint docs)
  • texts:
    will be passed as arguments to executeOnText (ESLint docs)

Returns what executeOnText returns.

Keywords

eslint

FAQs

Package last updated on 17 Jan 2017

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