Fix web code linting to be portable across environments

This commit is contained in:
Keavon Chambers
2021-04-14 11:44:09 -07:00
parent fcc4c1874b
commit c94c2b3373
23 changed files with 361 additions and 189 deletions

View File

@@ -69,5 +69,4 @@ export default defineComponent({
InputHint,
},
});
</script>

View File

@@ -1,7 +1,7 @@
<template>
<div class="input-hint">
<span class="input-key" v-for="inputKey in inputKeys" :key="inputKey" :class="keyCapWidth(inputKey)">
{{inputKey}}
{{ inputKey }}
</span>
<span class="input-mouse" v-if="inputMouse">
<MouseHintNone v-if="inputMouse === MouseInputInteraction.None" width="16" height="16" />
@@ -29,7 +29,8 @@
align-items: center;
white-space: nowrap;
.input-key, .input-mouse {
.input-key,
.input-mouse {
margin-right: 4px;
}

View File

@@ -1,6 +1,6 @@
<template>
<div class="window-title">
<span>{{title}}</span>
<span>{{ title }}</span>
</div>
</template>