From 1c7a89e901a91f41009a2817d0a04c61cabc87d7 Mon Sep 17 00:00:00 2001 From: IKEDA Sho Date: Fri, 22 May 2020 13:43:31 +0900 Subject: [PATCH] docs(eslint-plugin): [explicit-module-boundary-types] fix allowedNames config example --- .../eslint-plugin/docs/rules/explicit-module-boundary-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md b/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md index 5a33f9e9a359..453ec03a12a4 100644 --- a/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md +++ b/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md @@ -237,7 +237,7 @@ You may pass function/method names you would like this rule to ignore, like so: "@typescript-eslint/explicit-module-boundary-types": [ "error", { - "allowedName": ["ignoredFunctionName", "ignoredMethodName"] + "allowedNames": ["ignoredFunctionName", "ignoredMethodName"] } ] }