Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
eslint-plugin-react-percy
Advanced tools
ESLint plugin for react-percy
.
$ yarn add --dev eslint eslint-plugin-react-percy
Note: If you installed ESLint globally then you must also install eslint-plugin-react-percy
globally.
Add react-percy
to the plugins section of your .eslintrc
configuration file:
{
"plugins": [
"react-percy"
]
}
You can whitelist the environment variables provided by react-percy
by doing:
{
"env": {
"react-percy/globals": true
}
}
If you're using ESLint v4.1.0 or later, you can instead scope the react-percy
environment variables to only react-percy
test files by doing:
{
"overrides": [
{
"files": [
"**/__percy__/**/.*.{js,jsx}",
"**/*.percy.{js,jsx}"
],
"env": {
"react-percy/globals": true
}
}
]
}
FAQs
ESLint rules for @percy/react
We found that eslint-plugin-react-percy 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.