We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac941cf commit d50d510Copy full SHA for d50d510
packages/instrumentation-long-task/src/instrumentation.ts
@@ -13,6 +13,8 @@
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
+
17
+/* eslint-disable baseline-js/use-baseline */
18
import { hrTime } from '@opentelemetry/core';
19
import { diag } from '@opentelemetry/api';
20
import { InstrumentationBase } from '@opentelemetry/instrumentation';
packages/instrumentation-long-task/test/util.ts
@@ -16,7 +16,7 @@
import * as tracing from '@opentelemetry/sdk-trace-base';
export class DummySpanExporter implements tracing.SpanExporter {
- export(spans: tracing.ReadableSpan[]) {}
+ export(_spans: tracing.ReadableSpan[]) {}
21
shutdown() {
22
return Promise.resolve();
0 commit comments