Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.