From 79be8ced0687f2a2c22307c0cc8d3e5483b11551 Mon Sep 17 00:00:00 2001 From: Kevin Koech Date: Mon, 9 Dec 2024 10:44:39 +0300 Subject: [PATCH] chore: Remove obsolete ESLint configuration files and update eslint config and dependencies --- .../HURUmap/Panel/MobilePanel/MobilePanel.js | 1 - apps/pesayetu/eslint.config.js | 14 -------------- apps/promisetracker/eslint.config.js | 14 -------------- 3 files changed, 29 deletions(-) delete mode 100644 apps/pesayetu/eslint.config.js delete mode 100644 apps/promisetracker/eslint.config.js diff --git a/apps/climatemappedafrica/src/components/HURUmap/Panel/MobilePanel/MobilePanel.js b/apps/climatemappedafrica/src/components/HURUmap/Panel/MobilePanel/MobilePanel.js index 8d07887ba..889a73430 100644 --- a/apps/climatemappedafrica/src/components/HURUmap/Panel/MobilePanel/MobilePanel.js +++ b/apps/climatemappedafrica/src/components/HURUmap/Panel/MobilePanel/MobilePanel.js @@ -13,7 +13,6 @@ import Tabs from "@/climatemappedafrica/components/Tabs"; import { hurumapArgs } from "@/climatemappedafrica/config"; // being last is necessary for style override to work -// eslint-disable-next-line import/order function MobilePanel({ activeType, scrollToTopLabel, sx, ...props }) { const { onSelectLocation, primaryProfile, dataNotAvailable } = props; diff --git a/apps/pesayetu/eslint.config.js b/apps/pesayetu/eslint.config.js deleted file mode 100644 index b11205528..000000000 --- a/apps/pesayetu/eslint.config.js +++ /dev/null @@ -1,14 +0,0 @@ -const eslintConfig = require("eslint-config-commons-ui/next"); - -module.exports = [ - ...eslintConfig, - { - settings: { - "import/resolver": { - webpack: { - config: "./eslint.webpack.config.js", - }, - }, - }, - }, -]; diff --git a/apps/promisetracker/eslint.config.js b/apps/promisetracker/eslint.config.js deleted file mode 100644 index b9b82ad8d..000000000 --- a/apps/promisetracker/eslint.config.js +++ /dev/null @@ -1,14 +0,0 @@ -const eslintConfig = require("eslint-config-commons-ui/next"); - -module.exports = [ - { - settings: { - "import/resolver": { - webpack: { - config: "./eslint.webpack.config.js", - }, - }, - }, - }, - ...eslintConfig, -];