eslint-config-uber-es5
v2.0.3
Published
The base eslint config for web JavaScript at Uber
Readme
eslint-config-uber-es5 
The base eslint config for web JavaScript at Uber
Installation
Install eslint either locally or globally.
npm install --save-dev eslintIf you installed eslint locally, you should install eslint-config-uber-es5 locally too. Otherwise, install it globally.
npm install --save-dev eslint-config-uber-es5Usage
Initialize a .eslintrc file or append to an existing one.
Note: you can also configure eslint with other types of config files
Before
{
"rules": {},
"extends": []
}After
{
"rules": {},
"extends": [
"eslint-config-uber-es5"
]
}===
