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

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

1.0.4
Source
npm
Version published
Weekly downloads
124K
-9.17%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-diff

Run ESLint on your changes only

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.

Installation

$ yarn add -D eslint-plugin-diff

Usage

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

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

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

Extend your config in .eslintrc:

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

Equivalent to git diff HEAD

Keywords

eslint

FAQs

Package last updated on 23 Oct 2020

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