@nybr/eslint-config

ESLint configuration.

Usage no npm install needed!

<script type="module">
  import nybrEslintConfig from 'https://cdn.skypack.dev/@nybr/eslint-config';
</script>

README

@nybr/eslint-config v1.0.1

ESLint configuration.

Installation

Install this package using NPM.

$ npm install --save-dev @nybr/eslint-config

Usage

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",
    ],
};