From 97697e3d069972844b2912a93022f4a4904a40d6 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 31 Jul 2021 15:28:23 +0530 Subject: Fixed eslintrc as root for this folder; Reformatted all files. --- recipes/zimbra/index.js | 4 +--- recipes/zimbra/webview.js | 6 ++---- 2 files changed, 3 insertions(+), 7 deletions(-) (limited to 'recipes/zimbra') diff --git a/recipes/zimbra/index.js b/recipes/zimbra/index.js index 729a4bb..94357a3 100644 --- a/recipes/zimbra/index.js +++ b/recipes/zimbra/index.js @@ -1,7 +1,5 @@ -"use strict"; - module.exports = Franz => class Zimbra extends Franz { async validateUrl(url) { return true; } -}; \ No newline at end of file +}; diff --git a/recipes/zimbra/webview.js b/recipes/zimbra/webview.js index aaaa952..f56f09d 100644 --- a/recipes/zimbra/webview.js +++ b/recipes/zimbra/webview.js @@ -1,5 +1,3 @@ -"use strict"; - module.exports = Franz => { const getMessages = function getMessages() { const { title } = document; @@ -7,7 +5,7 @@ module.exports = Franz => { if (regex.test(title)) { Franz.setBadge( - Number(regex.exec(title)[0]) + Number(regex.exec(title)[0]), ); } else { Franz.setBadge(0); @@ -15,4 +13,4 @@ module.exports = Franz => { }; Franz.loop(getMessages); -}; \ No newline at end of file +}; -- cgit v1.2.3-54-g00ecf