Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
eslint-plugin-switch-statement
Advanced tools
Rules for properly handling switch statements, including ensuring that appropriate exhaustive case handling.
Rules for making switch/case expressions for union type values exhaustively checkable at compile time.
You'll first need to install ESLint and its dependency, espree
:
npm i eslint espree --save-dev
Next, install eslint-plugin-exhaustive-switch
. If you want to use the included assertUnreachable
in your source
code, make sure to save it as a dependency
and not a devDependency
.
npm install eslint-plugin-exhaustive-switch --save-dev
Add exhaustive-switch
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["@ethanresnick/exhaustive-switch"]
}
Then configure the rule under the rules section.
{
"rules": {
"exhaustive-switch/require-unreachable-default-case": [
2,
{ "unreachableDefaultCaseAssertionFunctionName": "assertNever" }
]
}
}
🔧 Automatically fixable by the --fix
CLI option.
💭 Requires type information.
Name | Description | 🔧 | 💭 |
---|---|---|---|
require-appropriate-default-case | require unreachable default case | 🔧 | 💭 |
FAQs
Rules for properly handling switch statements, including ensuring that appropriate exhaustive case handling.
The npm package eslint-plugin-switch-statement receives a total of 39 weekly downloads. As such, eslint-plugin-switch-statement popularity was classified as not popular.
We found that eslint-plugin-switch-statement 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.