Run prettier

This commit is contained in:
Yarmo Mackenbach 2021-04-22 16:00:37 +02:00
parent bbec25c657
commit f781458a2f
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1
8 changed files with 19 additions and 19 deletions

View file

@ -1,18 +1,13 @@
{
"plugins": ["plugins/markdown"],
"source": {
"include": [
"./src",
"./README.md"
]
"include": ["./src", "./README.md"]
},
"recurseDepth": 2,
"templates": {
"default": {
"staticFiles": {
"include": [
"./static"
]
"include": ["./static"]
}
}
},
@ -22,4 +17,4 @@
"docdash": {
"search": true
}
}
}

View file

@ -65,7 +65,7 @@ class Claim {
if (uri && !validUrl.isUri(uri)) {
throw new Error('Invalid URI')
}
// Verify validity of fingerprint
if (fingerprint) {
try {

View file

@ -20,4 +20,4 @@ exports.http = require('./http')
exports.irc = require('./irc')
exports.matrix = require('./matrix')
exports.twitter = require('./twitter')
exports.xmpp = require('./xmpp')
exports.xmpp = require('./xmpp')

View file

@ -58,7 +58,7 @@ const xmppStart = async (service, username, password) => {
* @async
* @param {object} data - Data used in the request
* @param {string} data.id - The identifier of the targeted account
* @param {string} data.field - The vCard field to return (should be "note")
* @param {string} data.field - The vCard field to return (should be "note")
* @param {object} opts - Options used to enable the request
* @param {string} opts.claims.xmpp.service - The server hostname on which the library can log in
* @param {string} opts.claims.xmpp.username - The username used to log in

View file

@ -34,7 +34,7 @@ const Claim = require('./claim')
* const key1 = doip.keys.fetchHKP('alice@domain.tld');
* const key2 = doip.keys.fetchHKP('123abc123abc');
*/
exports.fetchHKP = (identifier, keyserverDomain) => {
exports.fetchHKP = (identifier, keyserverDomain) => {
return new Promise(async (resolve, reject) => {
const keyserverBaseUrl = keyserverDomain
? `https://${keyserverDomain}`
@ -146,7 +146,7 @@ exports.fetchKeybase = (username, fingerprint) => {
* @returns {openpgp.key.Key}
* @example
* const plainkey = `-----BEGIN PGP PUBLIC KEY BLOCK-----
*
*
* mQINBF0mIsIBEADacleiyiV+z6FIunvLWrO6ZETxGNVpqM+WbBQKdW1BVrJBBolg
* [...]
* =6lib
@ -187,14 +187,19 @@ exports.fetchURI = (uri) => {
switch (match[1]) {
case 'hkp':
resolve(
exports.fetchHKP(match[3] ? match[3] : match[2], match[3] ? match[2] : null)
exports.fetchHKP(
match[3] ? match[3] : match[2],
match[3] ? match[2] : null
)
)
break
case 'wkd':
resolve(exports.fetchWKD(match[2]))
break
case 'kb':
resolve(exports.fetchKeybase(match[2], match.length >= 4 ? match[3] : null))
resolve(
exports.fetchKeybase(match[2], match.length >= 4 ? match[3] : null)
)
break
default:
reject('Invalid URI protocol')
@ -262,4 +267,4 @@ exports.process = (publicKey) => {
},
})
})
}
}

View file

@ -19,7 +19,7 @@ const utils = require('./utils')
const E = require('./enums')
/**
* @module proofs
* @module proofs
*/
/**

View file

@ -18,7 +18,7 @@ const Claim = require('./claim')
const keys = require('./keys')
/**
* @module signatures
* @module signatures
*/
/**

View file

@ -17,7 +17,7 @@ const validator = require('validator')
const E = require('./enums')
/**
* @module utils
* @module utils
*/
/**