Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasLohoff committed Oct 21, 2024
1 parent 5162080 commit b80ed76
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Grid/AgFeatureGrid/AgFeatureGrid.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
/* eslint-disable simple-import-sort/imports */
import '@ag-grid-community/styles/ag-grid.css';
import '@ag-grid-community/styles/ag-theme-balham.css';
/* eslint-enable simple-import-sort/imports */

import MapUtil from '@terrestris/ol-util/dist/MapUtil/MapUtil';
import useMap from '@terrestris/react-util/dist/Hooks/useMap/useMap';
import useOlLayer from '@terrestris/react-util/dist/Hooks/useOlLayer/useOlLayer';
import { ClientSideRowModelModule } from "@ag-grid-community/client-side-row-model";

import { ClientSideRowModelModule } from '@ag-grid-community/client-side-row-model';
import {
CellMouseOutEvent,
CellMouseOverEvent,
Expand All @@ -24,19 +27,22 @@ import {
AgGridReact,
AgGridReactProps
} from '@ag-grid-community/react';

import _differenceWith from 'lodash/differenceWith';
import _has from 'lodash/has';
import _isFunction from 'lodash/isFunction';
import _isNil from 'lodash/isNil';
import _isNumber from 'lodash/isNumber';
import _isString from 'lodash/isString';

import { getUid } from 'ol';
import OlFeature from 'ol/Feature';
import OlGeometry from 'ol/geom/Geometry';
import OlLayerBase from 'ol/layer/Base';
import OlLayerVector from 'ol/layer/Vector';
import OlMapBrowserEvent from 'ol/MapBrowserEvent';
import OlSourceVector from 'ol/source/Vector';

import React, { Key, ReactElement, useCallback, useEffect, useMemo, useState } from 'react';

import { CSS_PREFIX } from '../../constants';
Expand Down

0 comments on commit b80ed76

Please sign in to comment.