From e6fe3be8bebca5fbc2eaaff08a0e92450e98c440 Mon Sep 17 00:00:00 2001 From: dedpnd Date: Wed, 24 Feb 2021 19:23:38 +0300 Subject: [PATCH] prettier fix --- .eslintrc.js | 2 +- src/App.vue | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 44b8c45..10defbc 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,6 +16,6 @@ module.exports = { rules: { "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", - "@typescript-eslint/no-explicit-any": false + "@typescript-eslint/no-explicit-any": 0 } }; \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 913cae0..a026ed8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -185,7 +185,7 @@ export default Vue.extend({ gsNextTrack: false, gsPrevTrack: false, gsMute: false, - gsExit: false, + gsExit: false }), mounted() { // @@ -230,21 +230,21 @@ export default Vue.extend({ notifications: this.allowNotification, proxy: { protocol: this.protocol, - url: this.url, + url: this.url }, gs: { play: this.gsPlay, nextTrack: this.gsNextTrack, prevTrack: this.gsPrevTrack, mute: this.gsMute, - exit: this.gsExit, - }, + exit: this.gsExit + } }); ipcRenderer.sendSync("SetProxy"); this.dialog = false; - }, - }, + } + } });