Skip to content

Commit 9aeba30

Browse files
chore: correct a few comment placements in utils (#9856)
1 parent 08bdec4 commit 9aeba30

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

packages/utils/src/ts-eslint/Config.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ export namespace SharedConfig {
1818

1919
export type GlobalVariableOptionBase =
2020
| 'off'
21-
| 'readable'
21+
| /** @deprecated use `'readonly'` */ 'readable'
2222
| 'readonly'
23-
| /** @deprecated use `'writable'` */ 'writable'
24-
| /** @deprecated use `'readonly'` */ 'writeable';
23+
| 'writable'
24+
| /** @deprecated use `'writable'` */ 'writeable';
2525
export type GlobalVariableOptionBoolean =
26-
| /** @deprecated use `'writable'` */ false
27-
| /** @deprecated use `'readonly'` */ true;
26+
| /** @deprecated use `'readonly'` */ false
27+
| /** @deprecated use `'writable'` */ true;
2828
export type GlobalVariableOption =
2929
| GlobalVariableOptionBase
3030
| GlobalVariableOptionBoolean;
@@ -250,8 +250,7 @@ export namespace FlatConfig {
250250
* If not specified, the configuration object applies to all files matched by any other configuration object.
251251
*/
252252
files?: (
253-
| string[]
254-
// yes, a single layer of array nesting is supported
253+
| string[] // yes, a single layer of array nesting is supported
255254
| string
256255
)[];
257256
/**

0 commit comments

Comments
 (0)