diff --git a/package.json b/package.json index 41c6613..f33d2c6 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "dev": "vite", "serve": "vite preview", "build": "vite build", - "lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src" + "lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src", + "lint-fix": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src" }, "dependencies": { "@dicebear/collection": "^5.4.1", diff --git a/src/libs/util.ts b/src/libs/util.ts index 139cc64..1082317 100644 --- a/src/libs/util.ts +++ b/src/libs/util.ts @@ -237,19 +237,6 @@ export const generateSaveAndActivateIdentity = async (): Promise => { return newId.did; }; -function getBase64(subscription: PushSubscription, key: PushEncryptionKeyName) { - const buffer = subscription.getKey(key); - if (!buffer) { - return null; - } - const value = Buffer.from(buffer); - return value - .toString("base64") - .replace(/\+/g, "-") - .replace(/\//g, "_") - .replace(/=+$/, ""); -} - export const sendTestThroughPushServer = async ( subscriptionJSON: PushSubscriptionJSON, skipFilter: boolean, diff --git a/src/util.d.ts b/src/util.d.ts index ec32670..9a53a9d 100644 --- a/src/util.d.ts +++ b/src/util.d.ts @@ -1,4 +1,5 @@ // from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/node/util.d.ts +/* eslint-disable */ /** * The `node:util` module supports the needs of Node.js internal APIs. Many of the * utilities are useful for application and module developers as well. To access diff --git a/src/views/ContactsView.vue b/src/views/ContactsView.vue index f7391ec..9d3dcba 100644 --- a/src/views/ContactsView.vue +++ b/src/views/ContactsView.vue @@ -316,7 +316,6 @@ import { Account } from "@/db/tables/accounts"; import { Buffer } from "buffer/"; - @Component({ components: { QuickNav, EntityIcon }, })