eslint-config-henribeck

ESLint config

Usage no npm install needed!

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

README

eslint-config-henribeck

npm Maintenance npm David CircleCI

Eslint config for my personal projects.

Installation

yarn install eslint-config-henribeck --dev

Usage

module.exports = {
  extends: [
    'henribeck', // Base config
    'henribeck/client', // When your code is running in the browser
    'henribeck/server', // When your code is running on the server
    'henribeck/react', // When you use react
    'henribeck/flow', // When you use flow
    // 'henribeck/all' for enabling all of the configs
  ],
};