From 5f135b876e4eb78d86e1f28c62465613bcc07128 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 21 Aug 2024 10:35:36 -0400 Subject: [PATCH] chore: correct a few comment placements in utils --- packages/utils/src/ts-eslint/Config.ts | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/packages/utils/src/ts-eslint/Config.ts b/packages/utils/src/ts-eslint/Config.ts index d69fd14f3509..924214bf86c0 100644 --- a/packages/utils/src/ts-eslint/Config.ts +++ b/packages/utils/src/ts-eslint/Config.ts @@ -18,13 +18,13 @@ export namespace SharedConfig { export type GlobalVariableOptionBase = | 'off' - | 'readable' + | /** @deprecated use `'readonly'` */ 'readable' | 'readonly' - | /** @deprecated use `'writable'` */ 'writable' - | /** @deprecated use `'readonly'` */ 'writeable'; + | 'writable' + | /** @deprecated use `'writable'` */ 'writeable'; export type GlobalVariableOptionBoolean = - | /** @deprecated use `'writable'` */ false - | /** @deprecated use `'readonly'` */ true; + | /** @deprecated use `'readonly'` */ false + | /** @deprecated use `'writable'` */ true; export type GlobalVariableOption = | GlobalVariableOptionBase | GlobalVariableOptionBoolean; @@ -250,8 +250,7 @@ export namespace FlatConfig { * If not specified, the configuration object applies to all files matched by any other configuration object. */ files?: ( - | string[] - // yes, a single layer of array nesting is supported + | string[] // yes, a single layer of array nesting is supported | string )[]; /**