Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

lint-text

Package Overview
Dependencies
152
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lint-text

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


Version published
Maintainers
1
Created

Readme

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" && "code"')

Do

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

Features

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

API

lintText(options, text)

  • options:
    will be passed to the CLIEngine constructor (ESLint docs)
  • text:
    will be passed as first argument to executeOnText (ESLint docs)

Returns what executeOnText returns.

Keywords

FAQs

Last updated on 22 Jan 2017

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