Skip to content

Commit

Permalink
Disable faulty es lint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinBakalov committed Jul 4, 2024
1 parent accf2ba commit ca591f3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions extension/src/client/system/Keychain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ function getNodeModule<T>(moduleName: string): T | undefined {
return undefined
}

/* eslint-disable */
export type Keytar = {
getPassword: (typeof keytarType["getPassword"])
setPassword: (typeof keytarType["setPassword"])
deletePassword: (typeof keytarType["deletePassword"])
getPassword: typeof keytarType["getPassword"]
setPassword: typeof keytarType["setPassword"]
deletePassword: typeof keytarType["deletePassword"]
}

const failingKeytar: Keytar = {
Expand Down

0 comments on commit ca591f3

Please sign in to comment.