Fix linting in script blocks in vue files
- Removed the .eslintrc and added the pretteri rules to the eslintrc file
- Ran `npm run lint --fix`
Signed-off-by: Derick Montague <derick.montague@ibm.com>
Change-Id: I4e36c1967ae9b4d839ef88f1d47ffa20ab4e4991
diff --git a/src/App.vue b/src/App.vue
index d5b4932..a5a768a 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -5,15 +5,15 @@
</template>
<style lang="scss">
-@import "@/assets/styles/_obmc-custom";
+@import '@/assets/styles/_obmc-custom';
</style>
<script>
export default {
- name: "App",
+ name: 'App',
watch: {
$route: function(to) {
- document.title = to.meta.title || "Page is Missing Title";
+ document.title = to.meta.title || 'Page is Missing Title';
}
}
};