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 {
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 /**
You can’t perform that action at this time.
0 commit comments