
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
eslint-config-react-frontend
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-frontend receives a total of 7 weekly downloads. As such, eslint-config-react-frontend popularity was classified as not popular.
We found that eslint-config-react-frontend 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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.