Eslint Plugin Async/Await
Installation
npm install eslint-plugin-async-await --save
Usage
.eslintrc
(Recommended)
Via .eslintrc
Rules
async-await/space-after-async
: disallowasync()=>{}
, fixing toasync ()=>{}
.async-await/space-after-await
: disallowawait(foo)
, fixing toawait (foo)
.
The
--fix
option on the command line automatically fixes problems reported by this rule.
Development
Requirement global
- NodeJS v5.10.0
- Npm v3.8.3
git clone https://github.com/59naga/eslint-plugin-async-awaitcd eslint-plugin-async-awaitnpm install npm test