It is recommended to install esbnb globally.
npm i -g esbnb
- Language: JavaScript ES6/ES7
- VM: Node.js >=8.17.0
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.