Skip to content

Commit d867f81

Browse files
authored
Docs: Remove a dot from curly link (#15128)
1 parent 9f8b919 commit d867f81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/user-guide/configuring/rules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To configure rules inside of a file using configuration comments, use a comment
2020
/* eslint eqeqeq: "off", curly: "error" */
2121
```
2222

23-
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:
23+
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:
2424

2525
```js
2626
/* eslint eqeqeq: 0, curly: 2 */

0 commit comments

Comments
 (0)