From 3ba029fbffd44068be93254890fc2aec3e92c212 Mon Sep 17 00:00:00 2001 From: Danny Hurlburt Date: Wed, 3 Mar 2021 15:43:25 -0700 Subject: [PATCH] Docs: Remove Extraneous Dash (#14164) --- docs/developer-guide/shareable-configs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer-guide/shareable-configs.md b/docs/developer-guide/shareable-configs.md index 2181d1b44f8..7b57f3fbf28 100644 --- a/docs/developer-guide/shareable-configs.md +++ b/docs/developer-guide/shareable-configs.md @@ -93,7 +93,7 @@ You can also omit the `eslint-config` and it will be automatically assumed by ES } ``` -The module name can also be customized, just note that when using [scoped modules](https://docs.npmjs.com/misc/scope) it is not possible to omit the `eslint-config-` prefix. Doing so would result in package naming conflicts, and thus in resolution errors in most of cases. For example a package named `@scope/eslint-config-myconfig` vs `@scope/my-config`, since both are valid scoped package names, the configuration should be specified as: +The module name can also be customized, just note that when using [scoped modules](https://docs.npmjs.com/misc/scope) it is not possible to omit the `eslint-config-` prefix. Doing so would result in package naming conflicts, and thus in resolution errors in most of cases. For example a package named `@scope/eslint-config-myconfig` vs `@scope/myconfig`, since both are valid scoped package names, the configuration should be specified as: ```json {