From d867f8100737bb82742debee2b5dc853c5f07c91 Mon Sep 17 00:00:00 2001 From: Mauro Murru Date: Fri, 1 Oct 2021 23:04:01 +0200 Subject: [PATCH] Docs: Remove a dot from curly link (#15128) --- docs/user-guide/configuring/rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/configuring/rules.md b/docs/user-guide/configuring/rules.md index 2274b98ed02..0191f634886 100644 --- a/docs/user-guide/configuring/rules.md +++ b/docs/user-guide/configuring/rules.md @@ -20,7 +20,7 @@ To configure rules inside of a file using configuration comments, use a comment /* eslint eqeqeq: "off", curly: "error" */ ``` -In this example, [`eqeqeq`](https://eslint.org/docs/rules/eqeqeq) is turned off and [`curly`](.https://eslint.org/docs/rules/curly) is turned on as an error. You can also use the numeric equivalent for the rule severity: +In this example, [`eqeqeq`](https://eslint.org/docs/rules/eqeqeq) is turned off and [`curly`](https://eslint.org/docs/rules/curly) is turned on as an error. You can also use the numeric equivalent for the rule severity: ```js /* eslint eqeqeq: 0, curly: 2 */