eslint-config-noise-browser
v0.14.0
Published
A very Noise ESLint browser config indeed
Downloads
9
Maintainers
Readme
ESLint Config Noise Browser
An opinionated ESLint config based on the Airbnb JavaScript Style Guide for browser development.
Install
npm install --save-dev eslint eslint-config-noise eslint-config-noise-browser
npx install-peerdeps --dev eslint-config-noise
Configure
There are many ways to configure ESLint in the official documentation.
.eslintrc
{
"extends": ["noise", "noise-browser"],
"root": true
};
Variants
Some rules could be unnecessary or annoying in certain scenarios. These variants can be applied on top of the base config.
IE11
Need to support IE11.
.eslintrc
{
"extends": ["noise", "noise-browser", "noise-browser/ie11"],
"root": true
}