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
@@ -1,6 +1,6 @@
import { gql as apolloGql } from '@apollo/client/core'
import { markRaw } from 'vue'
export function gql(literals: string | readonly string[], ...args: any[]) {
export function gql (literals: string | readonly string[], ...args: any[]) {
return markRaw(apolloGql(literals, ...args))
}