
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@spokedev/eslint-config-jigsaw
Advanced tools
Contains the linting rules for Jigsaw.
Please install the following extensions if using VS Code:
.env
files.// TODO: ...
comments in code..yaml|.yml
files.To use this linting package in your projects you must include the peerDependencies
listed in the ./package.json
as devDependencies
in your project, and create a .eslintrc.js
file the root directory of your project.
peerDependencies
as devDependencies
in your project:{
"name": "my-project",
"devDependencies": {
"@jigsaw/eslint-config-jigsaw": "-version-",
"babel-eslint": "-version-",
"eslint": "-version-",
... // See package.json for the full list of other dependencies required.
}
}
engines.node
property in your package.json
containing the minimum supported Node.js version, e.g. ">12"
:{
"name": "my-project",
"devDependencies": {...},
"engines": {
"node": ">12"
}
}
.eslintrc.js
file in the root directory of your project like one of the following:Using the backend rules
module.exports = {
"extends": "@spokedev/eslint-config-jigsaw/backend",
};
Using the frontend rules
module.exports = {
"extends": "@spokedev/eslint-config-jigsaw/frontend",
};
Using the base rules
module.exports = {
"extends": "@spokedev/eslint-config-jigsaw",
};
The frontend rules are contained in ./frontend.js
and the backend rules in ./backend.js
. You probably want to edit either of those files. The base rules are shared between both the frontend and backend and can be found in ./base.js
.
peerDependency
in ./package.json
.npm version [patch|minor|major]
.npm publish
.npm update
.FAQs
ESLint rules for Jigsaw.
We found that @spokedev/eslint-config-jigsaw demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.