
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
The ESLint with Airbnb configuration installer.
It is recommended to install esbnb globally.
npm i -g esbnb
ESLint with Airbnb base rules. See Airbnb JavaScript Style Guide.
npm run lint
Mocha and Chai. Prefer using at least Node.js 12.x.x to run tests.
npm test
ESLint can be installed with 3 configurations from Airbnb: airbnb
, airbnb-base
and airbnb-base/legacy
.
For more details on which packages are installed with ESlint see :
At the root of your project, run:
esbnb
At the root of your project, run:
esbnb base
At the root of your project, run:
esbnb legacy
At the root of your project, run:
esbnb -h||-help
No configuration are required from your own.
esbnb installs and automatically configures your .eslintrc
file. It only adds the configuration name in the extends
property. If some values were present that are not an Airbnb config name, the extends
property will be an array with all these values plus the Airbnb one. If another Airbnb config is found, it will be replaced by the one being installed.
Before any process, a copy of your .eslintrc
is made in the case of something would go wrong. You'll find it in the esbnb package installed globally in the configs directory.
If no .eslintrc
file were found, a new one will be created with proper configuration.
Example of a new .eslintrc file created when installing ESLint with Airbnb base configuration :
{
"extends": "airbnb-base"
}
Examples of an existing .eslintrc file already configured when installing ESLint with Airbnb base configuration :
Before:
{
"extends": "my-config"
}
After:
{
"extends": [
"my-config",
"airbnb-base"
]
}
Before:
{
"extends": "airbnb-base/legacy"
}
After:
{
"extends": "airbnb-base"
}
This project has a Code of Conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
Please have a look at our TODO for any work in progress.
Please take also a moment to read our Contributing Guidelines if you haven't yet done so.
Please see our Support page if you have any questions or for any help needed.
For any security concerns or issues, please visit our Security Policy page.
MIT.
FAQs
The ESLint with Airbnb configuration installer
The npm package esbnb receives a total of 2 weekly downloads. As such, esbnb popularity was classified as not popular.
We found that esbnb 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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.