Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vutran/eslint-plugin-async

:hourglass: async/await linting rules for ESLint
https://github.com/vutran/eslint-plugin-async

async await eslint lint promise

Last synced: 1 day ago
JSON representation

:hourglass: async/await linting rules for ESLint

Awesome Lists containing this project

README

        

# eslint-plugin-async

[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

> async/await linting rules for ESLint

## Install

```bash
$ npm install --save-dev eslint-plugin-async
```

## Configuration

Edit your `.eslintrc`

```json
{
"plugins": ["async"],
"rules": {
"async/missing-await-in-async-fn": 1
}
}
```

## License

MIT © [Vu Tran](https://github.com/vutran/)