Skip to content

Commit

Permalink
Fixed some things broken by the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
zCoCo committed Oct 7, 2022
1 parent 452c003 commit dcf1441
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
1 change: 1 addition & 0 deletions Apps/FrontendSoftware/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ module.exports = {
// VUE EXCEPTIONS:
'vue/no-v-html': 'off',
'vue/require-default-prop': 'off',
'vue/attribute-hyphenation': 'off', // this breaks a lot since we're adding lint late into dev
'vue/no-mutating-props': process.env.NODE_ENV === 'production' ? 'warn' : 'warn'
}
};
2 changes: 2 additions & 0 deletions Apps/FrontendSoftware/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"cSpell.words": [
"autopopulate",
"Circumnav",
"Deletemodal",
"devcluster",
"frameless",
Expand All @@ -43,6 +44,7 @@
"sankey",
"saslprep",
"Sidemodal",
"specced",
"splashless",
"tooltipster",
"vals",
Expand Down
14 changes: 7 additions & 7 deletions Apps/FrontendSoftware/src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Last Update: 08/14/2020, Colombo
<template>
<div class="main">
<CombinedScreens>
<ImageViewer tab-name="Image Viewer" />
<Map tab-name="Map" />
<ImageViewer TabName="Image Viewer" />
<Map TabName="Map" />
<div
id="Telemetry"
TabName="Telemetry"
Expand All @@ -27,16 +27,16 @@ Last Update: 08/14/2020, Colombo
</div>
<FTA
ref="fta"
tab-name="Failure Tree"
modal-header="Failure Tree Analysis"
modal-icon="data"
TabName="Failure Tree"
ModalHeader="Failure Tree Analysis"
ModalIcon="data"
/>

<template #modal-components>
<CLI
ref="cli"
modal-header="Command Line"
modal-icon="commandLine"
ModalHeader="Command Line"
ModalIcon="commandLine"
/>
<div
ModalHeader="Mini Map"
Expand Down

0 comments on commit dcf1441

Please sign in to comment.