Chore: Remove needless eslint ignore comment from variable utils (#54050)

This commit is contained in:
Josh Hunt 2022-08-22 16:50:24 +01:00 committed by GitHub
parent 7caba545ec
commit 2b17e5354a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -6132,7 +6132,9 @@ exports[`better eslint`] = {
[0, 0, 0, "Unexpected any. Specify a different type.", "7"], [0, 0, 0, "Unexpected any. Specify a different type.", "7"],
[0, 0, 0, "Unexpected any. Specify a different type.", "8"], [0, 0, 0, "Unexpected any. Specify a different type.", "8"],
[0, 0, 0, "Unexpected any. Specify a different type.", "9"], [0, 0, 0, "Unexpected any. Specify a different type.", "9"],
[0, 0, 0, "Do not use any type assertions.", "10"] [0, 0, 0, "Unexpected any. Specify a different type.", "10"],
[0, 0, 0, "Unexpected any. Specify a different type.", "11"],
[0, 0, 0, "Do not use any type assertions.", "12"]
], ],
"public/app/plugins/datasource/alertmanager/DataSource.ts:5381": [ "public/app/plugins/datasource/alertmanager/DataSource.ts:5381": [
[0, 0, 0, "Unexpected any. Specify a different type.", "0"] [0, 0, 0, "Unexpected any. Specify a different type.", "0"]

View File

@ -300,9 +300,7 @@ export function toVariablePayload<T extends any = undefined>(
identifier: VariableIdentifier, identifier: VariableIdentifier,
data?: T data?: T
): VariablePayload<T>; ): VariablePayload<T>;
// eslint-disable-next-line
export function toVariablePayload<T extends any = undefined>(model: VariableModel, data?: T): VariablePayload<T>; export function toVariablePayload<T extends any = undefined>(model: VariableModel, data?: T): VariablePayload<T>;
// eslint-disable-next-line
export function toVariablePayload<T extends any = undefined>( export function toVariablePayload<T extends any = undefined>(
obj: VariableIdentifier | VariableModel, obj: VariableIdentifier | VariableModel,
data?: T data?: T