Lint fixes

This commit is contained in:
Adrian Jagielak
2025-07-28 23:31:14 +02:00
parent c56b9c6fbe
commit 986c85c0bf
7 changed files with 17 additions and 14 deletions

View File

@@ -1,4 +1,3 @@
import { sendFimpMsg } from '../fimp/fimp';
import { InclusionReport } from '../fimp/inclusion_report';
import {
VinculumPd7Device,
@@ -36,7 +35,7 @@ import {
loginToThingsplex,
} from '../thingsplex/thingsplex';
import { abbreviateHaMqttKeys } from './abbreviate_ha_mqtt_keys';
import { ha, haCommandHandlers } from './globals';
import { ha } from './globals';
import { HaDeviceConfig } from './ha_device_config';
import { HaMqttComponent } from './mqtt_components/_component';
@@ -50,10 +49,10 @@ export type CommandHandlers = {
};
function ignoreService(
topicPrefix: string,
device: VinculumPd7Device,
svc: VinculumPd7Service,
svcName: string,
_topicPrefix: string,
_device: VinculumPd7Device,
_svc: VinculumPd7Service,
_svcName: string,
): ServiceComponentsCreationResult | undefined {
return undefined;
}