You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

eslint-plugin-diff

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-diff

Run ESLint on your changes only


Version published
Weekly downloads
82K
decreased by-0.02%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

eslint-plugin-diff

Run ESLint on your changed lines only. Now with CI support!

What problem does it solve?

Introducing new ESLint rules (or updating 3rd party configs) in a large codebase can be tedious. This plugin allows your team to ease into new rules by only linting all new/modified code, eventually migrating to the new/updated rules.

It can be used in CI environments as well.

Installation

$ yarn add -D eslint-plugin-diff

Usage

If you want to define which commit or commit-range to diff between (useful in CI), you can set the environment variable ESLINT_PLUGIN_DIFF_COMMIT (otherwise the plugin will default to HEAD):

$ ESLINT_PLUGIN_DIFF_COMMIT="a8fdc20..5a9f19c" yarn run eslint .
# or
$ ESLINT_PLUGIN_DIFF_COMMIT="${GITHUB_SHA}.." yarn run eslint .

See git's official documentation on the syntax

It's recommended to use "plugin:diff/diff" (see config).

Config diff — Diff all changes since HEAD (staged and unstaged)

Extend your config in .eslintrc:

{
  "extends": ["plugin:diff/diff"]
}

Equivalent to git diff HEAD

Config staged — Diff staged changes only

Useful for pre-commit hooks, e.g. when running ESLint with lint-staged

Extend your config in .eslintrc:

{
  "extends": ["plugin:diff/staged"]
}

Equivalent to git diff HEAD --staged

Keywords

FAQs

Package last updated on 25 Aug 2021

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc