mirror of
https://github.com/grafana/grafana.git
synced 2025-09-25 17:04:10 +08:00

* chore(eslint): remove prettier-plugin * chore(eslint): test changes by using grafana/eslint 3.0.0-alpha * chore(prettier): add js,ts,tsx when checking / writing * chore(prettier): dont check js files * chore(linting): align prettier and eslint ignore files * style: run prettier:write on FE codebase * chore(eslint): use grafana/eslint-config@3.0.0
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
import { markersLayer } from './markersLayer';
|
|
import { geojsonLayer } from './geojsonLayer';
|
|
import { heatmapLayer } from './heatMap';
|
|
import { lastPointTracker } from './lastPointTracker';
|
|
|
|
/**
|
|
* Registry for layer handlers
|
|
*/
|
|
export const dataLayers = [markersLayer, heatmapLayer, lastPointTracker, geojsonLayer];
|