# @sensuapp/eslint-config-flow

> Sensu's ESLint config (for use with Flow.)

Latest version **1.5.0** (published 2019-10-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install @sensuapp/eslint-config-flow
pnpm add @sensuapp/eslint-config-flow
yarn add @sensuapp/eslint-config-flow
bun add @sensuapp/eslint-config-flow
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.5.0 |
| Published | 2019-10-05 |
| First published | 2018-10-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 5.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | James Phillips |
| Maintainers | jamesdphillips |
| Keywords | eslint, style-linter, linting, flow |

## Links

- npm: https://www.npmjs.com/package/@sensuapp/eslint-config-flow
- Repository: https://github.com/sensu/eslint-config/packages/eslint-config-flow
- Homepage: https://github.com/sensu/eslint-config
- Issues: https://github.com/sensu/eslint-config/issues
- npm.io page: https://npm.io/package/@sensuapp/eslint-config-flow

## Dependencies (4)

- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^2.9.0
- [eslint-plugin-flowtype](https://npm.io/package/eslint-plugin-flowtype.md) ^2.46.1
- [eslint-plugin-prettier](https://npm.io/package/eslint-plugin-prettier.md) ^2.6.0
- [@sensuapp/eslint-config](https://npm.io/package/@sensuapp/eslint-config.md) ^1.5.0

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 1.5.0 (latest) — 2019-10-05
- 1.4.0 — 2018-10-23

## README

# Unmaintained

No longer maintained, kept for historical purposes.

# @sensuapp/eslint-config-flow

This package provides Sensu's Flowtype ESLint settings as an extensible
configuration.

![version](http://img.shields.io/npm/v/eslint-config.svg?style=flat-square)
![license](http://img.shields.io/npm/l/eslint-config.svg?style=flat-square)
![build](https://img.shields.io/travis/sensu/eslint-config/master.svg?style=flat-square)

## Usage

First, add the package to your project.

```sh
yarn add --dev eslint @sensuapp/eslint-config-flow

# or with npm

npm install --save-dev eslint @sensuapp/eslint-config-flow
```

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

```sh
./node_modules/.bin/eslint --init
```

Finally, add the following to your `.eslintrc`.

```json
{
  "extends": [
    "@sensuapp/eslint-config",
    "@sensuapp/eslint-config-flow",
  ]
}
```

### React

When used in concert with React you may want to remove the `prop-types` rule as
it will likely be duplicate effort. To do so add the following to your
`.eslintrc` file.


```json
{
  "extends": [
    "@sensuapp/eslint-config",
    "@sensuapp/eslint-config-flow",
    "@sensuapp/eslint-config-react",
  ],
  "rules": {
    "react/prop-types": "off",
  }
}
```

---
_Source: https://npm.io/package/@sensuapp/eslint-config-flow · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
