From d5c8ff91d264ba4a1e3b412876c28edfc407dbed Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 14 Oct 2024 17:09:18 +0800 Subject: [PATCH] docs: note that we use camelCase name for extendable configurations I regret not making it kebab-case from the beginning, but it's too late to change. Besides, if we want to support both camelCase and kebab-case, the TypeScript suggestion will be a mess (it's sorted in alphabetical order so you'll see camelCase and kebab-case results mixed together). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6aab071..182c330 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ export default [ // You can also manually enable the stylistic rules. // "stylistic", - // Other utility configurations, such as `eslint-recommended`, + // Other utility configurations, such as `eslintRecommended`, (note that it's in camelCase) // are also extendable here. But we don't recommend using them directly. ],