File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
packages/utils/src/ts-eslint Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ export namespace SharedConfig {
18
18
19
19
export type GlobalVariableOptionBase =
20
20
| 'off'
21
- | 'readable'
21
+ | /** @deprecated use `'readonly'` */ 'readable'
22
22
| 'readonly'
23
- | /** @deprecated use `'writable'` */ 'writable'
24
- | /** @deprecated use `'readonly '` */ 'writeable' ;
23
+ | 'writable'
24
+ | /** @deprecated use `'writable '` */ 'writeable' ;
25
25
export type GlobalVariableOptionBoolean =
26
- | /** @deprecated use `'writable '` */ false
27
- | /** @deprecated use `'readonly '` */ true ;
26
+ | /** @deprecated use `'readonly '` */ false
27
+ | /** @deprecated use `'writable '` */ true ;
28
28
export type GlobalVariableOption =
29
29
| GlobalVariableOptionBase
30
30
| GlobalVariableOptionBoolean ;
@@ -250,8 +250,7 @@ export namespace FlatConfig {
250
250
* If not specified, the configuration object applies to all files matched by any other configuration object.
251
251
*/
252
252
files ?: (
253
- | string [ ]
254
- // yes, a single layer of array nesting is supported
253
+ | string [ ] // yes, a single layer of array nesting is supported
255
254
| string
256
255
) [ ] ;
257
256
/**
You can’t perform that action at this time.
0 commit comments