Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
eslint-config-next-react-app
Advanced tools
This package includes the shareable ESLint configuration used by Create Next React App.
Please refer to its documentation:
The easiest way to use this configuration is with Create Next React App, which includes it by default.
You don’t need to install it separately.
If you want to use this ESLint configuration in a project not built with Create Next React App, you can install it with following steps.
First, install this package, ESLint and the necessary plugins.
npm install --save-dev eslint-config-next-react-app babel-eslint@^7.2.3 eslint@^4.1.1 eslint-plugin-flowtype@^2.34.1 eslint-plugin-import@^2.6.0 eslint-plugin-jsx-a11y@^5.1.1 eslint-plugin-react@^7.1.0
Then create a file named .eslintrc
with following contents in the root folder of your project:
{
"extends": "next-react-app"
}
That's it! You can override the settings from eslint-config-config
by editing the .eslintrc
file. Learn more about configuring ESLint on the ESLint website.
The following rules from the eslint-plugin-jsx-a11y plugin are activated:
If you want to enable even more accessibility rules, you can create an .eslintrc
file in the root of your project with this content:
{
"extends": ["next-react-app", "plugin:jsx-a11y/recommended"],
"plugins": ["jsx-a11y"]
}
However, if you are using Create Next React App, any additional rules will only be displayed in the IDE, but not in the browser or the terminal.
FAQs
ESLint configuration used by Create Next React App
The npm package eslint-config-next-react-app receives a total of 2 weekly downloads. As such, eslint-config-next-react-app popularity was classified as not popular.
We found that eslint-config-next-react-app demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.