From 2f836856fb0942f99dfa6acab33e1fc548165991 Mon Sep 17 00:00:00 2001 From: Gerhard Stoebich <18708370+Flarna@users.noreply.github.com> Date: Mon, 26 Apr 2021 17:01:21 +0200 Subject: [PATCH] chore: fix lint --- plugins/node/opentelemetry-instrumentation-ioredis/src/types.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/node/opentelemetry-instrumentation-ioredis/src/types.ts b/plugins/node/opentelemetry-instrumentation-ioredis/src/types.ts index 4119c97415..8b0334313f 100644 --- a/plugins/node/opentelemetry-instrumentation-ioredis/src/types.ts +++ b/plugins/node/opentelemetry-instrumentation-ioredis/src/types.ts @@ -18,7 +18,6 @@ import type * as ioredisTypes from 'ioredis'; import { InstrumentationConfig } from '@opentelemetry/instrumentation'; import { Span } from '@opentelemetry/api'; -// eslint-disable-next-line @typescript-eslint/interface-name-prefix export interface IORedisCommand { reject: (err: Error) => void; resolve: (result: {}) => void; @@ -61,7 +60,6 @@ export interface RedisResponseCustomAttributeFunction { /** * Options available for the IORedis Instrumentation (see [documentation](https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-instrumentation-ioredis#ioredis-instrumentation-options)) */ -// eslint-disable-next-line @typescript-eslint/interface-name-prefix export interface IORedisInstrumentationConfig extends InstrumentationConfig { /** Custom serializer function for the db.statement tag */ dbStatementSerializer?: DbStatementSerializer;