@nybr/eslint-config
v1.0.1
Published
ESLint configuration
Readme
@nybr/eslint-config v1.0.1
ESLint configuration.
Installation
Install this package using NPM.
$ npm install --save-dev @nybr/eslint-configUsage
Create an .eslintrc.js file in the root of your project and extend the default ESLint settings. You will also need to extend the ES5 or ES6 settings (based on your project):
module.exports = {
"extends": [
"@nybr/eslint-config",
"@nybr/eslint-config/es6.js",
],
};