Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 0 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.