
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
eslint-config-react-config
Advanced tools
Eslint configuration containing rule set for react, jest and typescript projects
Specific ESLint configuration for React projects based on Typescript. The setup is based on the guidelines provided by the official eslint documentation.
It applies the recommended
rules from:
# npm
npm install eslint --save-dev
# yarn
yarn add eslint --save
eslint-plugin-react-config
# npm
npm install eslint-plugin-react-config --save-dev
# yarn
yarn add -D eslint-plugin-react-config
All configurations inherit from some base rules. Therefore, these plugins are always required.
# npm
npm install eslint-friendly-formatter \
eslint-plugin-jest \
eslint-plugin-ordered-imports \
eslint-plugin-prettier \
eslint-plugin-react \
eslint-plugin-react-hooks \
eslint-plugin-sort-destructure-keys \
--save-dev
# yarn
yarn add eslint-friendly-formatter \
eslint-plugin-jest \
eslint-plugin-ordered-imports \
eslint-plugin-prettier \
eslint-plugin-react \
eslint-plugin-react-hooks \
eslint-plugin-sort-destructure-keys \
--dev
To import configuration for react:
module.exports = {
extends: ['eslint-config-react-config/react'],
};
To import configuration for jest:
module.exports = {
extends: ['eslint-config-react-config/jest'],
};
To import configuration for typescript:
module.exports = {
extends: ['eslint-config-react-config/typescript'],
};
Run the following script:
# npm
npx eslint .
# yarn
yarn eslint .
ESLint will lint all relevant files within the current folder, and output results.
Most IDEs via a ESLint plugin will also give these results.
To update the ruleset and publish as a public npm package, first authenticate yourself via npm and then run:
npm run publish:public
The package should then be available for public installation and usage. Further information about publishing npm packages can be found here
FAQs
Eslint configuration containing rule set for react, jest and typescript projects
The npm package eslint-config-react-config receives a total of 0 weekly downloads. As such, eslint-config-react-config popularity was classified as not popular.
We found that eslint-config-react-config demonstrated a not healthy version release cadence and project activity because the last version was released 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 Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.