ci: remove prettier and use eslint for formatting

This commit is contained in:
2024-02-02 14:46:42 +01:00
parent 6ff8688760
commit b1e04077f9
20 changed files with 222 additions and 383 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export default {
components: {
Filters
},
head() {
head () {
const { t } = useTranslation()
return {
title: t('filters.title')
+4 -4
View File
@@ -2,16 +2,16 @@
<events />
</template>
<script>
import Events from '../components/pages/events'
import { useTranslation } from '../plugins/i18n'
<script lang='ts'>
import Events from '~/components/pages/events/index.vue'
import { useTranslation } from '~/plugins/i18n'
export default {
name: 'IndexPage',
components: {
Events
},
head() {
head () {
const { t } = useTranslation()
return {
title: t('events.title')
+1 -1
View File
@@ -11,7 +11,7 @@ export default {
components: {
Origins
},
head() {
head () {
const { t } = useTranslation()
return {
title: t('origins.title')