
Security News
Open VSX Begins Implementing Pre-Publish Security Checks After Repeated Supply Chain Incidents
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.
eslint-interactive
Advanced tools
Quick fixes, per rule.
Run eslint --fix, disable per line, apply suggestions, and more!
The default ESLint output contains a lot of useful messages for developers, such as the source of the error and hints for fixing it. While this works for many use cases, it does not work well in situations where many messages are reported. For example, when introducing ESLint into a project, or when making big changes to the .eslintrc of a project. In these situations, the output of ESLint can be quite large, making it difficult for developers to analyze the output. It is also difficult for the developer to fix messages mechanically, because messages of many rules are mixed up in the output.
In such the above situation, I think two things are important:
eslint --fix is one of the best ways to fix problems efficiently, but it auto-fixes all rule problems at once.eslint --fix.So, I created a tool called eslint-interactive which wraps ESLint. This tool groups all problems by rule and outputs formatted number of problems per rule. In addition to the breakdown of problems per rule, it also outputs the number of fixable problems and other hints to help developers fix problems.
It also supports the following actions in addition to eslint --fix. All actions can be applied for each rule:
eslint --fix// eslint-disable-next-line <rule-name>)/* eslint-disable <rule-name> */)/* eslint <rule-name>: 1 */)eslint --fix:memo: NOTE: The globally installed eslint-interactive is not officially supported. It is recommended to install eslint-interactive locally. See FAQ.
$ # For npm
$ npm i -D eslint-interactive
$ npx eslint-interactive --help
$ # For yarn
$ yarn add -D eslint-interactive
$ yarn eslint-interactive --help
$ # For pnpm
$ pnpm add -D eslint-interactive
$ pnpm exec eslint-interactive --help
The interface of eslint-interactive is partially compatible with eslint. So, in most cases, simply replacing eslint with eslint-interactive in the command to lint (e.g. eslint ./src --ext .ts,.tsx) will work. However, eslint-interactive is installed locally, so you need to add npx.
$ # Show help
$ npx eslint-interactive --help
eslint-interactive [file.js] [dir]
Options:
--help Show help [boolean]
--version Show version number [boolean]
--eslintrc Enable use of configuration from .eslintrc.* [boolean] [default: true]
-c, --config Use this configuration, overriding .eslintrc.* config options if present [string]
--resolve-plugins-relative-to A folder where plugins should be resolved from, CWD by default [string]
--ext Specify JavaScript file extensions [array]
--rulesdir Use additional rules from this directory [array]
--ignore-path Specify path of ignore file [string]
--format Specify the format to be used for the `Display problem messages` action [string] [default: "codeframe"]
--quiet Report errors only [boolean] [default: false]
--cache Only check changed files [boolean] [default: true]
--cache-location Path to the cache file or directory
[string] [default: "node_modules/.cache/eslint-interactive/10.6.0/.eslintcache"]
Examples:
eslint-interactive ./src Lint ./src/ directory
eslint-interactive ./src ./test Lint multiple directories
eslint-interactive './src/**/*.{ts,tsx,vue}' Lint with glob pattern
eslint-interactive ./src --ext .ts,.tsx,.vue Lint with custom extensions
eslint-interactive ./src --rulesdir ./rules Lint with custom rules
eslint-interactive ./src --no-eslintrc --config ./.eslintrc.ci.js Lint with custom config
Actions can be executed per rule.
eslint --fix
// eslint-disable-next-line <rule-name>) per line.// eslint-disable <rule-name>) per file./* eslint <rule-name>: 1 */) per file.eslint --fix (experimental, for experts)
See Programmable API documentation.
Excerpt a quote from official ESLint documentation.
In some cases fixes aren't appropriate to be automatically applied, for example, if a fix potentially changes functionality or if there are multiple valid ways to fix a rule depending on the implementation intent. In such a case, the ESLint rule provides candidates for a fix. These are called suggestions.
Suggestion can be one or more. The user has to manually decide if that fix should be applied or which fix should be applied because automatically applying of suggestion is inappropriate. For this reason, ESLint has stated that it will not officially provide a way to automatically apply suggestion (ref). Instead, tools such as vscode-eslint allow users to apply suggestions manually (ref).
eslint is installed locally in most projects. In such a case, if eslint-interactive is installed globally, it will be installed in a different space than eslint. The space separation makes some resources of eslint-interactive inaccessible from eslint and may break them (ref: #77). Therefore, global installation of eslint-interactive is not officially supported.
No. eslint-interactive does not prohibit global installation. Global installation is allowed because it has the advantage of saving installation effort. However, it is not officially supported and users must use it at their own risk.
If the global installation does not work, you can send a patch by pull request. However, whether the patch will be accepted depends on the case.
A tool similar to eslint-interactive is eslint-nibble. Both tools solve the same problem, but eslint-interactive has some features that eslint-nibble does not have. For example, eslint-interactive prints the number of fixable problems per rule, while eslint-nibble does not. Also, eslint-interactive has various tricks to speed up the cycle of auto-fixing per-rule, but eslint-nibble auto-fixes once and terminates the process every time, so it is not as fast as eslint-interactive.
I think these features are very important to solve the aforementioned problem. At first, I thought of implementing these features in eslint-nibble, but it required a major rewrite of the code, so I implemented it as a new tool eslint-interactive. Although eslint-interactive is a tool independent of eslint-nibble, it is influenced by the ideas of eslint-nibble and inherits some of its code. That's why you can find the names of @IanVS and others in the license of eslint-interactive.
Thanks, @IanVS.
suppress-eslint-errors is an excellent tool to add comments for disable mechanically. Just like eslint-interactive, it allows you to add disable comments for each rule and leave the purpose of disable as a comment. There is no functional difference between the two, but there is a difference in the API used to insert the comments.
suppress-eslint-errors uses jscodeshift to insert comments. jscodeshift modifies the file in parallel, so suppress-eslint-errors has the advantage of being able to insert comments faster. However, jscodeshift cannot reuse the AST of ESLint, so you need to reparse the code in jscodeshift. This means that you have to pass jscodeshift the information it needs to parse your code (parser type, parser options). In fact, suppress-eslint-errors requires --extensions and --parser command line option. Normally, users specify the parsing options in .eslintrc, so passing these options may seem cumbersome. Also, due to the difference in the way ESLint and jscodeshift parse, it may not be possible to insert comments correctly.
On the other hand, eslint-interactive uses ESLint.outputFixes to insert comments. It uses ESLint's API to do everything from parsing the code to inserting the comments, so it works as expected in many cases. Also, eslint-interactive will parse the code using the parsing options specified in .eslintrc. Therefore, comments can be inserted without any additional command line options. By the way, comment insertion is slower than suppress-eslint-errors because, unlike suppress-eslint-errors, it cannot modify files in parallel. However, this limitation may be improved when ESLint supports parallel processing in the near future.
FAQs
The CLI tool to run `eslint --fix` for each rule
The npm package eslint-interactive receives a total of 122,755 weekly downloads. As such, eslint-interactive popularity was classified as popular.
We found that eslint-interactive demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.