@sensuapp/eslint-config-react

Sensu's ESLint config (for React.)

Usage no npm install needed!

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

README

@sensuapp/eslint-config-react

This package provides Sensu's React & JSX ESLint settings as an extensible configuration.

version license build

Usage

First, add the package to your project.

yarn add --dev eslint @sensuapp/eslint-config-react

# or with npm

npm install --save-dev eslint @sensuapp/eslint-config-react

If you did not already have an .eslintrc file you can add one.

./node_modules/.bin/eslint --init

Finally, add the following to your .eslintrc.

{
  "extends": [
    "@sensuapp/eslint-config",
    "@sensuapp/eslint-config-react",
  ]
}