eslint-changeset

Runs ESLint on changed files

Usage no npm install needed!

<script type="module">
  import eslintChangeset from 'https://cdn.skypack.dev/eslint-changeset';
</script>

README

eslint-changeset ·

Runs ESLint on changed files.

Why

Linting an entire project can be slow and some of the results may not be relevant. Oftentimes, we only care about linting the files that have changed.

This project contains a script that will run ESLint on a list of changed files.

Usage

npm

npx eslint-changeset

pnpm

pnpx libyear

yarn@1 (yarn classic)

yarn add --dev eslint-changeset
yarn eslint-changeset

yarn@2 (yarn berry)

yarn dlx eslint-changeset

CLI

--branch=<branch>

Accepts a git branch. Default master.

Compare changes with the specified branch.

--fix

Accepts a boolean.

Automatically fix problems.

--since=<ref>

Accepts a git ref.

Compare changes since the specified reference.