@@ -150,7 +150,7 @@ export type VueMessageType = string | ResourceNode | VNode
150
150
*
151
151
* @VueI 18nGeneral
152
152
*/
153
- export interface DefineLocaleMessage extends LocaleMessage < VueMessageType > { } // eslint-disable-line @typescript-eslint/no-empty-interface
153
+ export interface DefineLocaleMessage extends LocaleMessage < VueMessageType > { }
154
154
155
155
/**
156
156
* The type definition of datetime format
@@ -177,7 +177,7 @@ export interface DefineLocaleMessage extends LocaleMessage<VueMessageType> {} //
177
177
*
178
178
* @VueI 18nGeneral
179
179
*/
180
- export interface DefineDateTimeFormat extends DateTimeFormat { } // eslint-disable-line @typescript-eslint/no-empty-interface
180
+ export interface DefineDateTimeFormat extends DateTimeFormat { }
181
181
182
182
/**
183
183
* The type definition of number format
@@ -205,7 +205,7 @@ export interface DefineDateTimeFormat extends DateTimeFormat {} // eslint-disabl
205
205
*
206
206
* @VueI 18nGeneral
207
207
*/
208
- export interface DefineNumberFormat extends NumberFormat { } // eslint-disable-line @typescript-eslint/no-empty-interface
208
+ export interface DefineNumberFormat extends NumberFormat { }
209
209
210
210
export type DefaultLocaleMessageSchema <
211
211
Schema = RemoveIndexSignature < {
@@ -1196,7 +1196,7 @@ export interface ComposerNumberFormatting<
1196
1196
*
1197
1197
* @VueI 18nComposition
1198
1198
*/
1199
- export interface ComposerCustom { } // eslint-disable-line @typescript-eslint/no-empty-interface
1199
+ export interface ComposerCustom { }
1200
1200
1201
1201
/**
1202
1202
* Composer interfaces
@@ -1801,9 +1801,9 @@ function defineCoreMissingHandler(missing: MissingHandler): CoreMissingHandler {
1801
1801
/* #__NO_SIDE_EFFECTS__ */
1802
1802
const getMetaInfo = ( ) : MetaInfo | null => {
1803
1803
const instance = getCurrentInstance ( )
1804
- let meta: any = null // eslint-disable-line @typescript-eslint/no-explicit-any
1804
+ let meta: any = null
1805
1805
return instance && ( meta = getComponentOptions ( instance ) [ DEVTOOLS_META ] )
1806
- ? { [ DEVTOOLS_META ] : meta } // eslint-disable-line @typescript-eslint/no-explicit-any
1806
+ ? { [ DEVTOOLS_META ] : meta }
1807
1807
: null
1808
1808
}
1809
1809
@@ -1867,7 +1867,7 @@ export function createComposer<
1867
1867
*
1868
1868
* @internal
1869
1869
*/
1870
- // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
1870
+
1871
1871
export function createComposer ( options : any = { } , VueI18nLegacy ?: any ) : any {
1872
1872
type Message = VueMessageType
1873
1873
const { __root, __injectWithOption } = options as ComposerInternalOptions <
@@ -2172,7 +2172,7 @@ export function createComposer(options: any = {}, VueI18nLegacy?: any): any {
2172
2172
2173
2173
function isResolvedTranslateMessage (
2174
2174
type : ComposerWarnType ,
2175
- arg : any // eslint-disable-line @typescript-eslint/no-explicit-any
2175
+ arg : any
2176
2176
) : boolean {
2177
2177
return type !== 'translate' || ! arg . resolvedMessage
2178
2178
}
@@ -2337,7 +2337,7 @@ export function createComposer(options: any = {}, VueI18nLegacy?: any): any {
2337
2337
} ,
2338
2338
( ) => parseTranslateArgs ( ...args ) ,
2339
2339
'translate' ,
2340
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
2340
+
2341
2341
root => ( root as any ) [ TranslateVNodeSymbol ] ( ...args ) ,
2342
2342
key => [ createTextNode ( key as string ) ] ,
2343
2343
val => isArray ( val )
@@ -2350,7 +2350,7 @@ export function createComposer(options: any = {}, VueI18nLegacy?: any): any {
2350
2350
context => Reflect . apply ( number , null , [ context , ...args ] ) ,
2351
2351
( ) => parseNumberArgs ( ...args ) ,
2352
2352
'number format' ,
2353
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
2353
+
2354
2354
root => ( root as any ) [ NumberPartsSymbol ] ( ...args ) ,
2355
2355
NOOP_RETURN_ARRAY ,
2356
2356
val => isString ( val ) || isArray ( val )
@@ -2365,7 +2365,7 @@ export function createComposer(options: any = {}, VueI18nLegacy?: any): any {
2365
2365
context => Reflect . apply ( datetime , null , [ context , ...args ] ) ,
2366
2366
( ) => parseDateTimeArgs ( ...args ) ,
2367
2367
'datetime format' ,
2368
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
2368
+
2369
2369
root => ( root as any ) [ DatetimePartsSymbol ] ( ...args ) ,
2370
2370
NOOP_RETURN_ARRAY ,
2371
2371
val => isString ( val ) || isArray ( val )
0 commit comments