refactor: Clear unused ESLint directives from FE packages (no-changelog) (#6811)
This commit is contained in:
@@ -8,7 +8,6 @@ export const debounceHelper = defineComponent({
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
async callDebounced(...inputParameters: any[]): Promise<void> {
|
||||
const functionName = inputParameters.shift() as string;
|
||||
const { trailing, debounceTime } = inputParameters.shift();
|
||||
|
||||
@@ -13,7 +13,6 @@ export const genericHelpers = defineComponent({
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
loadingService: null as any | null,
|
||||
};
|
||||
},
|
||||
|
||||
@@ -198,7 +198,7 @@ export const pushConnection = defineComponent({
|
||||
|
||||
if (receivedData.type === 'sendConsoleMessage') {
|
||||
const pushData = receivedData.data;
|
||||
console.log(pushData.source, ...pushData.messages); // eslint-disable-line no-console
|
||||
console.log(pushData.source, ...pushData.messages);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user