From 90b04cc9a5ffc6a0210616ff23fb14ec1f3f772b Mon Sep 17 00:00:00 2001 From: Dimitar Nestorov <8790386+DimitarNestorov@users.noreply.github.com> Date: Mon, 22 May 2023 19:46:14 +0300 Subject: [PATCH] Update docs for sort-type-constituents --- packages/eslint-plugin/docs/rules/sort-type-constituents.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/eslint-plugin/docs/rules/sort-type-constituents.md b/packages/eslint-plugin/docs/rules/sort-type-constituents.md index 264ef2b52df9..025e31ccad4f 100644 --- a/packages/eslint-plugin/docs/rules/sort-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/sort-type-constituents.md @@ -60,18 +60,18 @@ type T2 = { a: string } & { b: string }; type T3 = [1, 2, 3] & [1, 2, 4]; type T4 = - | any - | string | A | B | number[] | string[] + | any + | string | readonly number[] | readonly string[] | 'a' - | 'b' | 'a' | 'b' + | 'b' | (() => string) | (() => void) | { a: string }