diff --git a/.forgejo/workflows/.eslintrc.json b/.forgejo/workflows/.eslintrc.json new file mode 100644 index 0000000..346226c --- /dev/null +++ b/.forgejo/workflows/.eslintrc.json @@ -0,0 +1,25 @@ +{ + "env": { + "node": true, + "es2021": true + }, + "extends": [ + "eslint:recommended" + ], + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "no-unused-vars": "warn", + "no-undef": "error" + }, + "globals": { + "cfg": "readonly", + "URL_CLAIM": "readonly", + "authenticator": "readonly", + "prompt": "readonly", + "notify": "readonly" + } +} + diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 6b6dfad..fcba226 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -125,3 +125,5 @@ jobs: run: | docker push "${{ secrets.REGISTRY_IMAGE }}:${{ env.IMAGE_TAG }}" + +