aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlepodcasts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-07-26 06:29:03 -0600
committerLibravatar GitHub <noreply@github.com>2023-07-26 17:59:03 +0530
commit9b8f01716774a960073e944823ab727cc867a8f6 (patch)
tree732b83770baa78f5cf12776aaa33ce65bebfa418 /recipes/googlepodcasts
parentAdd Excalidraw recipe (#393) (diff)
downloadferdium-recipes-9b8f01716774a960073e944823ab727cc867a8f6.tar.gz
ferdium-recipes-9b8f01716774a960073e944823ab727cc867a8f6.tar.zst
ferdium-recipes-9b8f01716774a960073e944823ab727cc867a8f6.zip
chore: improve lint setup (#397)
- update eslint config to closely mirror the ones from ferdium-app - add .eslintignore - opt in to eslint `reportUnusedDisableDirectives` config option - remove `trailingComma: all` from `prettier` config which is default in `prettier` v3 - autofix or disable a lot of lint issues throughout codebase - add `volta` configuration to `package.json` to autoload correct `node` and `pnpm` versions - upgrade all `eslint` and `prettier` related dependencies to latest - update lint:fix npm script - reformat touched files with prettier - bumped up minor version for all recipes that have changes - introduced injection of 'service.css' where it was missing in many recipes --------- Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'recipes/googlepodcasts')
-rw-r--r--recipes/googlepodcasts/icon.svg1
-rw-r--r--recipes/googlepodcasts/index.js1
-rw-r--r--recipes/googlepodcasts/package.json9
-rw-r--r--recipes/googlepodcasts/webview.js16
4 files changed, 0 insertions, 27 deletions
diff --git a/recipes/googlepodcasts/icon.svg b/recipes/googlepodcasts/icon.svg
deleted file mode 100644
index f1da8b9..0000000
--- a/recipes/googlepodcasts/icon.svg
+++ /dev/null
@@ -1 +0,0 @@
1<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><g stroke-linecap="round" stroke-width="48.5"><path d="M24.26 186.32v27.351" stroke="#0066d9"/><path d="M375.74 186.32v27.351" stroke="#4285f4"/><path d="M112.13 104.27v89.46m0 74.645v27.351" stroke="#ea4335"/><path d="M287.87 206.26v89.46m0-191.46v27.351" stroke="#34a853"/><path d="M200 127.06v145.87m0-248.68v27.351m0 296.78v27.351" stroke="#fab908"/></g></svg> \ No newline at end of file
diff --git a/recipes/googlepodcasts/index.js b/recipes/googlepodcasts/index.js
deleted file mode 100644
index dd41f72..0000000
--- a/recipes/googlepodcasts/index.js
+++ /dev/null
@@ -1 +0,0 @@
1module.exports = Ferdium => Ferdium;
diff --git a/recipes/googlepodcasts/package.json b/recipes/googlepodcasts/package.json
deleted file mode 100644
index dd2ea9e..0000000
--- a/recipes/googlepodcasts/package.json
+++ /dev/null
@@ -1,9 +0,0 @@
1{
2 "id": "googlepodcasts",
3 "name": "Google Podcasts",
4 "version": "1.3.1",
5 "license": "MIT",
6 "config": {
7 "serviceURL": "https://podcasts.google.com/u/0/"
8 }
9}
diff --git a/recipes/googlepodcasts/webview.js b/recipes/googlepodcasts/webview.js
deleted file mode 100644
index 86bb422..0000000
--- a/recipes/googlepodcasts/webview.js
+++ /dev/null
@@ -1,16 +0,0 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
9 // const getMessages = () => {
10 // // TODO: Insert your notification-finding code here
11 // Ferdium.setBadge(0, 0);
12 // };
13 // Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
16};