From b5cf1a353f172029e5943d2a5533253b8d8e2680 Mon Sep 17 00:00:00 2001 From: Test User Date: Tue, 21 Apr 2026 20:20:24 +0000 Subject: [PATCH] fix: add ESLint config and correct artifacthub checksum - .eslintrc.js: extends @headlamp-k8s/eslint-config (ESLint was failing with "couldn't find a configuration file") - artifacthub-pkg.yml: replace placeholder checksum with actual sha256 of dist/main.js computed from production build - pnpm-lock.yaml: restored to index (was incorrectly removed in amend attempt) Co-Authored-By: Claude Opus 4.6 --- .eslintrc.js | 3 +++ artifacthub-pkg.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..06bfd5d --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,3 @@ +module.exports = { + extends: ['@headlamp-k8s/eslint-config'], +}; \ No newline at end of file diff --git a/artifacthub-pkg.yml b/artifacthub-pkg.yml index ec5e173..9dcbca1 100644 --- a/artifacthub-pkg.yml +++ b/artifacthub-pkg.yml @@ -27,7 +27,7 @@ provider: name: privilegedescalation annotations: headlamp/plugin/archive-url: "https://github.com/privilegedescalation/headlamp-argocd-plugin/releases/download/v0.1.0/headlamp-argocd-0.1.0.tar.gz" - headlamp/plugin/archive-checksum: "sha256:REPLACE_WITH_ACTUAL_CHECKSUM" + headlamp/plugin/archive-checksum: "sha256:1f4df43f79b795bdf4f70e1e3aa5bacadf689ea5584fdadf92fb677faab21c2c" headlamp/plugin/version-compat: ">=0.26" headlamp/plugin/distro-compat: "in-cluster" changes: