
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.
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.
1.2.2 - delivery @07/06/2023
FAQs
The ESLint with Airbnb configuration installer
The npm package esbnb receives a total of 0 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.
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.