From 2627ae2c103bda1358fed9c879cc4f682a7cf0a6 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Fri, 13 Jul 2018 15:15:31 -0400 Subject: [PATCH] Fix #139: make it more clear that param-names includes ordering --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f5ee743..b1299c84 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ or start with the recommended rule set | -------------------------------------------------------- | -------------------------------------------------------------------------------- | ----------- | -------- | | [`catch-or-return`][catch-or-return] | Enforces the use of `catch()` on un-returned promises. | :bangbang: | | | [`no-return-wrap`][no-return-wrap] | Avoid wrapping values in `Promise.resolve` or `Promise.reject` when not needed. | :bangbang: | | -| [`param-names`][param-names] | Enforce consistent param names when creating new promises. | :bangbang: | :wrench: | +| [`param-names`][param-names] | Enforce consistent param names and ordering when creating new promises | :bangbang: | :wrench: | | [`always-return`][always-return] | Return inside each `then()` to create readable and reusable Promise chains. | :bangbang: | | | [`no-native`][no-native] | In an ES5 environment, make sure to create a `Promise` constructor before using. | | | | [`no-nesting`][no-nesting] | Avoid nested `then()` or `catch()` statements | :warning: | |