Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-04-09 12:59:47 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-08-03 10:04:57 +0300
commit5cda71737127d51517c06debb73af902119381fa (patch)
tree949549a996896da2b025d983a71884ad6b54f09d /src/main-settings.js
parentc49f2f5c006c6b98b6a7227fe4d76f577a974735 (diff)
Migrate to eslint-config-nextcloud
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/main-settings.js')
-rw-r--r--src/main-settings.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main-settings.js b/src/main-settings.js
index 17c222193..a30e72601 100644
--- a/src/main-settings.js
+++ b/src/main-settings.js
@@ -1,4 +1,4 @@
-/*
+/**
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
*
* @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
@@ -19,15 +19,17 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-import {generateFilePath} from '@nextcloud/router'
-import {getRequestToken} from '@nextcloud/auth'
-import {loadState} from '@nextcloud/initial-state'
+import { generateFilePath } from '@nextcloud/router'
+import { getRequestToken } from '@nextcloud/auth'
+import { loadState } from '@nextcloud/initial-state'
import Vue from 'vue'
import AdminSettings from './components/settings/AdminSettings'
import Nextcloud from './mixins/Nextcloud'
+// eslint-disable-next-line camelcase
__webpack_nonce__ = btoa(getRequestToken())
+// eslint-disable-next-line camelcase
__webpack_public_path__ = generateFilePath('mail', '', 'js/')
Vue.mixin(Nextcloud)