grafana-toolbox / panodata-map-panel

Map Panel for Grafana with improved convenience, robustness and features. Friendly fork of the original Grafana Worldmap Panel. Currently not maintained, but verified to work up to Grafana 9.
https://community.panodata.org/t/grafana-map-panel/121
GNU Affero General Public License v3.0
88 stars 31 forks source link

Linter fails with two 'no-duplicate-imports' errors #101

Closed jreyesr closed 3 years ago

jreyesr commented 3 years ago

(This issue was first reported by @falconhome in https://github.com/panodata/grafana-map-panel/issues/97#issuecomment-844591006)

When running npx yarn dev after having run npx run upgrade, the linter fails with two violations of the no-duplicate-imports rule in ESLint. This makes it impossible to build the plugin.

Steps to reproduce

  1. Clone grafana-map-panel with git clone https://github.com/panodata/grafana-map-panel
  2. Run npx yarn install
  3. Run npx yarn dev. It should run without issue (at least it does on my machine). If it fails, skip to step 5.
  4. If the previous step didn't fail, run npx yarn upgrade.
  5. Run npx yarn dev again. It should fail with two 'leaflet' import is duplicated no-duplicate-imports errors, on files src/worldmap.ts and src/types/leaflet_plus.d.ts

Cause

When cloning and running npx yarn install, version 7.3.1 of package @grafana/toolkit is downloaded. This package requires version 2.0.3 of @grafana/eslint-config. These two versions come from the yarn.lock file.

After running npx yarn upgrade, @grafana/toolkit is (in my tests) upgraded to version 7.5.7, which specifies version 2.3.0 of @grafana/eslint-config. However, the no-duplicate-imports rule was added on version 2.2.0 of @grafana/eslint-config.