eslint-config-platzi

Platzi base ESLint config for JS School

Usage no npm install needed!

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

README

eslint-config-platzi

Installation

The default export contains all default Airbnb ESLint rules and the configurations recommended by the Platzi team.

Install the package:

npm install eslint-config-platzi --save-dev

Usage

Now add the config to either your package.json:

{
  "eslintConfig": {
    "extends": "eslint-config-platzi"
  }
}

to your .eslintrc:

{
  "extends": "eslint-config-platzi"
}

or .eslintrc.js:

module.exports ={
  "extends": "eslint-config-platzi"
}

LICENCE

MIT