Apply linter autofix

This commit is contained in:
Alexandre Aubin 2021-10-01 18:07:08 +02:00
parent ad090890bb
commit 76a1c16b9f
3 changed files with 3 additions and 4 deletions

View file

@ -131,7 +131,7 @@ export default {
document.addEventListener('keydown', ({ key }) => {
if (key === copypastaCode[copypastastep++]) {
if (copypastastep === copypastaCode.length) {
document.getElementsByClassName("unselectable").forEach((element) => element.classList.remove("unselectable"))
document.getElementsByClassName('unselectable').forEach((element) => element.classList.remove('unselectable'))
copypastastep = 0
}
} else {

View file

@ -58,7 +58,6 @@
<p class="w-100 px-5 py-2 mb-0" v-html="$t('text_selection_is_disabled')" />
</view-base>
</template>

View file

@ -1,5 +1,5 @@
const webpack = require('webpack')
const fs = require('fs');
const fs = require('fs')
const dateFnsLocales = [
'ar',
@ -73,6 +73,6 @@ module.exports = {
ignored: /node_modules/,
aggregateTimeout: 300,
poll: 1000
},
}
} : {}
}