From 97a8b8ed87ab83ef03799ef2a0f9e8fe32d12099 Mon Sep 17 00:00:00 2001 From: Daniel Rentz Date: Mon, 22 Apr 2024 09:10:25 +0200 Subject: [PATCH] fixed typo in docs/index.md: missing "rules" property "rules" property is missing in the flat config example. --- docs/index.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 21751ca..d8822a3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -60,7 +60,9 @@ Either way, you can optionally configure individual rules: // ... comments.recommended, { - "@eslint-community/eslint-comments/no-unused-disable": "error" + rules: { + "@eslint-community/eslint-comments/no-unused-disable": "error" + } }, ] ```