From 208130967946f99c0a930696f8824cdc35952761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 28 Jan 2019 00:01:28 +0100 Subject: [PATCH] lib: Mark globals used from other modules as exported eslint cannot figure out that those symbols are used from other modules via imports, so they trigger unused-variable errors. To fix, explicitly mark those symbols as exported. https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/50 --- lib/convenience.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/convenience.js b/lib/convenience.js index 4775eddb..af0343a2 100644 --- a/lib/convenience.js +++ b/lib/convenience.js @@ -1,4 +1,5 @@ /* -*- mode: js; js-basic-offset: 4; indent-tabs-mode: nil -*- */ +/* exported initTranslations getSettings */ /* Copyright (c) 2011-2012, Giovanni Campagna