From c5dc86b562520e58137e20c9595a30c65431ff3c Mon Sep 17 00:00:00 2001 From: "LB (Ben Johnston)" Date: Wed, 24 Jan 2024 09:10:40 +1000 Subject: [PATCH] docs: Update sort-keys options properties count The current count is incorrect (3), as there are four items. Avoid needing to update this with making the text more generic. --- docs/src/rules/sort-keys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/rules/sort-keys.md b/docs/src/rules/sort-keys.md index 14cdc12f8f3..7f731193d80 100644 --- a/docs/src/rules/sort-keys.md +++ b/docs/src/rules/sort-keys.md @@ -85,7 +85,7 @@ The 1st option is `"asc"` or `"desc"`. * `"asc"` (default) - enforce properties to be in ascending order. * `"desc"` - enforce properties to be in descending order. -The 2nd option is an object which has 3 properties. +The 2nd option is an object which has the following properties. * `caseSensitive` - if `true`, enforce properties to be in case-sensitive order. Default is `true`. * `minKeys` - Specifies the minimum number of keys that an object should have in order for the object's unsorted keys to produce an error. Default is `2`, which means by default all objects with unsorted keys will result in lint errors.