Browse Source

Remove the eslint stuff from docs

(trying to remove the eslint-disables throughout)
Manav Rathi 1 năm trước cách đây
mục cha
commit
a689aca4a6
1 tập tin đã thay đổi với 0 bổ sung16 xóa
  1. 0 16
      web/docs/webauthn-passkeys.md

+ 0 - 16
web/docs/webauthn-passkeys.md

@@ -170,13 +170,9 @@ We just have to decode the base64 fields back into `Uint8Array`.
 const options = response.options;
 const options = response.options;
 
 
 options.publicKey.challenge = _sodium.from_base64(
 options.publicKey.challenge = _sodium.from_base64(
-    // eslint-disable-next-line @typescript-eslint/ban-ts-comment
-    // @ts-ignore
     options.publicKey.challenge,
     options.publicKey.challenge,
 );
 );
 options.publicKey.user.id = _sodium.from_base64(
 options.publicKey.user.id = _sodium.from_base64(
-    // eslint-disable-next-line @typescript-eslint/ban-ts-comment
-    // @ts-ignore
     options.publicKey.user.id,
     options.publicKey.user.id,
 );
 );
 ```
 ```
@@ -195,14 +191,10 @@ The browser returns the newly created credential with a bunch of binary fields,
 
 
 ```ts
 ```ts
 const attestationObjectB64 = _sodium.to_base64(
 const attestationObjectB64 = _sodium.to_base64(
-	// eslint-disable-next-line @typescript-eslint/ban-ts-comment
-	// @ts-ignore
 	new Uint8Array(credential.response.attestationObject),
 	new Uint8Array(credential.response.attestationObject),
 	_sodium.base64_variants.URLSAFE_NO_PADDING
 	_sodium.base64_variants.URLSAFE_NO_PADDING
 );
 );
 const clientDataJSONB64 = _sodium.to_base64(
 const clientDataJSONB64 = _sodium.to_base64(
-	// eslint-disable-next-line @typescript-eslint/ban-ts-comment
-	// @ts-ignore
 	new Uint8Array(credential.response.clientDataJSON),
 	new Uint8Array(credential.response.clientDataJSON),
 	_sodium.base64_variants.URLSAFE_NO_PADDING
 	_sodium.base64_variants.URLSAFE_NO_PADDING
 ```
 ```
@@ -381,26 +373,18 @@ Before sending the public key and signature to the server, their outputs must be
 
 
 ```ts
 ```ts
 authenticatorData: _sodium.to_base64(
 authenticatorData: _sodium.to_base64(
-    // eslint-disable-next-line @typescript-eslint/ban-ts-comment
-    // @ts-ignore
     new Uint8Array(credential.response.authenticatorData),
     new Uint8Array(credential.response.authenticatorData),
     _sodium.base64_variants.URLSAFE_NO_PADDING
     _sodium.base64_variants.URLSAFE_NO_PADDING
 ),
 ),
 clientDataJSON: _sodium.to_base64(
 clientDataJSON: _sodium.to_base64(
-    // eslint-disable-next-line @typescript-eslint/ban-ts-comment
-    // @ts-ignore
     new Uint8Array(credential.response.clientDataJSON),
     new Uint8Array(credential.response.clientDataJSON),
     _sodium.base64_variants.URLSAFE_NO_PADDING
     _sodium.base64_variants.URLSAFE_NO_PADDING
 ),
 ),
 signature: _sodium.to_base64(
 signature: _sodium.to_base64(
-    // eslint-disable-next-line @typescript-eslint/ban-ts-comment
-    // @ts-ignore
     new Uint8Array(credential.response.signature),
     new Uint8Array(credential.response.signature),
     _sodium.base64_variants.URLSAFE_NO_PADDING
     _sodium.base64_variants.URLSAFE_NO_PADDING
 ),
 ),
 userHandle: _sodium.to_base64(
 userHandle: _sodium.to_base64(
-    // eslint-disable-next-line @typescript-eslint/ban-ts-comment
-    // @ts-ignore
     new Uint8Array(credential.response.userHandle),
     new Uint8Array(credential.response.userHandle),
     _sodium.base64_variants.URLSAFE_NO_PADDING
     _sodium.base64_variants.URLSAFE_NO_PADDING
 ),
 ),