From 9a90abf59e31247c03a24ca789cd6157504f63ed Mon Sep 17 00:00:00 2001 From: Milos Djermanovic Date: Tue, 3 May 2022 02:32:34 +0200 Subject: [PATCH] docs: update docs directory in working-with-rules (#15830) --- docs/src/developer-guide/working-with-rules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/developer-guide/working-with-rules.md b/docs/src/developer-guide/working-with-rules.md index f1330ac1296..0a2d202cf98 100644 --- a/docs/src/developer-guide/working-with-rules.md +++ b/docs/src/developer-guide/working-with-rules.md @@ -11,7 +11,7 @@ Each rule in ESLint has three files named with its identifier (for example, `no- * in the `lib/rules` directory: a source file (for example, `no-extra-semi.js`) * in the `tests/lib/rules` directory: a test file (for example, `no-extra-semi.js`) -* in the `docs/rules` directory: a Markdown documentation file (for example, `no-extra-semi`) +* in the `docs/src/rules` directory: a Markdown documentation file (for example, `no-extra-semi.md`) **Important:** If you submit a **core** rule to the ESLint repository, you **must** follow some conventions explained below.