Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
BlaineHeffron committed Jun 11, 2024
1 parent 6a3c924 commit ce534a1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ module.exports = {
"import/prefer-default-export": 0,
"node/no-unsupported-features/es-syntax": 0,
"node/no-unsupported-features/es-builtins": 0,
"no-proto": 0,
camelcase: 0,
"class-methods-use-this": 0,
"linebreak-style": 0,
Expand Down
2 changes: 1 addition & 1 deletion src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { HorizonApi } from "./horizon/horizon_api";

// For ES5 compatibility (https://stackoverflow.com/a/55066280).
/* tslint:disable:variable-name max-classes-per-file */

/* eslint-disable no-proto */

export class NetworkError extends Error {
public response: {
Expand Down
1 change: 1 addition & 0 deletions src/rpc/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ function findCreatedAccountSequenceInTransactionMeta(
throw new Error('No account created in transaction');
}

/* eslint-disable jsdoc/no-undefined-types */
/**
* Handles the network connection to a Soroban RPC instance, exposing an
* interface for requests to that instance.
Expand Down
2 changes: 1 addition & 1 deletion src/webauth/errors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

/* eslint-disable no-proto */
export class InvalidChallengeError extends Error {
public __proto__: InvalidChallengeError;

Expand Down

0 comments on commit ce534a1

Please sign in to comment.