Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Commit

Permalink
style: prettier format
Browse files Browse the repository at this point in the history
  • Loading branch information
nogic1008 committed Aug 12, 2022
1 parent a933090 commit 142e294
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"plugin:vue/vue3-recommended",
"prettier"
],
"plugins": ["jest", "simple-import-sort"],
"plugins": ["simple-import-sort"],
"rules": {
"no-process-env": "error",
"sort-imports": "off",
Expand Down
2 changes: 1 addition & 1 deletion __tests__/src/song.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, expect,test } from 'vitest'
import { describe, expect, test } from 'vitest'

import { normalizeDifficulty } from '~~/src/song'

Expand Down
4 changes: 2 additions & 2 deletions __tests__/test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const mountAsync = async (
render() {
return h(Suspense, null, {
default: h(component),
fallback: h('div', 'fallback'),
fallback: h('div', 'fallback')
})
},
}
}),
options
)
Expand Down
5 changes: 1 addition & 4 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@

<OTable :data="softwareList" striped :loading="isLoading">
<OTableColumn v-slot="props" field="name" label="Name">
<NuxtLink
class="is-size-6-mobile"
:to="`/series/${props.row.slug}/`"
>
<NuxtLink class="is-size-6-mobile" :to="`/series/${props.row.slug}/`">
{{ props.row.name }}
</NuxtLink>
</OTableColumn>
Expand Down

0 comments on commit 142e294

Please sign in to comment.