Chore: fix .eslintignore to only ignore folder paths at the root (#72032)

fix eslintignore to only ignore folder paths at the root
This commit is contained in:
Ashley Harrison
2023-07-21 09:17:42 +01:00
committed by GitHub
parent 892a0d2e5e
commit 01369e6aff
14 changed files with 159 additions and 109 deletions

View File

@@ -1,5 +1,6 @@
import { DataFrame, DataFrameJSON, FieldType, getFieldDisplayName, reduceField, ReducerID } from '@grafana/data';
import { StreamingFrameAction, StreamingFrameOptions } from '@grafana/runtime';
import { closestIdx, getStreamingFrameOptions, StreamingDataFrame } from './StreamingDataFrame';
describe('Streaming JSON', () => {

View File

@@ -1,3 +1,5 @@
import { AlignedData } from 'uplot';
import {
DataFrame,
DataFrameJSON,
@@ -15,7 +17,6 @@ import {
import { join } from '@grafana/data/src/transformations/transformers/joinDataFrames';
import { StreamingFrameAction, StreamingFrameOptions } from '@grafana/runtime/src/services/live';
import { renderLegendFormat } from 'app/plugins/datasource/prometheus/legend';
import { AlignedData } from 'uplot';
/**
* Stream packet info is attached to StreamingDataFrames and indicate how many

View File

@@ -1,4 +1,5 @@
import { DataQueryResponseData, isDataFrame } from '@grafana/data';
import { StreamingDataFrame } from './StreamingDataFrame';
/**