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
+2 -2
View File
@@ -17,7 +17,7 @@ const getToken = (options) => {
const authLink = setContext((_, { headers }) => {
return getToken()
.then((token) => ({
.then(token => ({
headers: {
...headers,
authorization: token ? `Bearer ${token}` : ''
@@ -43,6 +43,6 @@ const instance = new ApolloClient({
}
})
export default function(_, inject) {
export default function (_, inject) {
inject('apollo', instance)
}