Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions packages/utils/src/ts-eslint/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
)[];
/**
Expand Down
Loading