
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
@sealsystems/eslint
Advanced tools
ESLint executable and configuration for SEAL Systems
npm install --save-dev @sealsystems/eslint
Create a file with the name .eslintrc.json
in the root directory of your project. It should contain at least the following lines:
{
"extends": "@sealsystems/eslint"
}
ESLint is installed as a dependency of @sealsystems/eslint
. So you can call eslint
from the root directory of your project:
$(npm bin)/eslint **/*.js
Please note:
node_modules
folder, you may need to delete package-lock.json
before adding this package.The package also provides 3 CLI executables:
bot
runs the following checks:
ESLint
Unit Tests by calling npm run test
Missing or unused dependencies (aborts the test run only if package.json
does not contain a dependency)
Outdated dependencies (never aborts the test run)
In case of an error, the returned status code indicates the number of the failed test
lint
runs ESLint
lint-fix
runs ESLint with the option --fix
Please note:
ESLint ignores all files and directories listed in the project's .gitignore
.
To get a completely colorized output, you must force NPM to always use color:
npm config set color always
To use these binaries, add some scripts to your package.json
:
...
"scripts": {
"bot": "bot",
"lint": "lint",
"lint:fix": "lint-fix"
}
...
And call them via npm run
:
npm run bot
npm run lint
npm run lint:fix
FAQs
ESLint executable and configuration for SEAL Systems
The npm package @sealsystems/eslint receives a total of 2 weekly downloads. As such, @sealsystems/eslint popularity was classified as not popular.
We found that @sealsystems/eslint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.