Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dedpnd committed Feb 24, 2021
1 parent c18247c commit e6fe3be
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
};
12 changes: 6 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export default Vue.extend({
gsNextTrack: false,
gsPrevTrack: false,
gsMute: false,
gsExit: false,
gsExit: false
}),
mounted() {
//
Expand Down Expand Up @@ -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;
},
},
}
}
});
</script>

0 comments on commit e6fe3be

Please sign in to comment.