Skip to content

Commit ea2e4e7

Browse files
dependabot[bot]achowdhry-ripplepdp2121
authored
build(deps-dev): bump prettier from 3.6.2 to 3.7.4 (#3150)
* build(deps-dev): bump prettier from 3.6.2 to 3.7.4 Bumps [prettier](https://github.com/prettier/prettier) from 3.6.2 to 3.7.4. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.6.2...3.7.4) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.7.4 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix linter errors --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: achowdhry-ripple <achowdhry@ripple.com> Co-authored-by: pdp2121 <71317875+pdp2121@users.noreply.github.com> Co-authored-by: Phu Pham <ppham@ripple.com>
1 parent be8d9a2 commit ea2e4e7

26 files changed

+49
-82
lines changed

package-lock.json

Lines changed: 6 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/xrpl/src/models/ledger/Amendments.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ export interface Majority {
2525
* @category Ledger Entries
2626
*/
2727
export default interface Amendments
28-
extends BaseLedgerEntry,
29-
HasOptionalPreviousTxnID {
28+
extends BaseLedgerEntry, HasOptionalPreviousTxnID {
3029
LedgerEntryType: 'Amendments'
3130
/**
3231
* Array of 256-bit amendment IDs for all currently-enabled amendments. If

packages/xrpl/src/models/ledger/DepositPreauth.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'
99
* @category Ledger Entries
1010
*/
1111
export default interface DepositPreauth
12-
extends BaseLedgerEntry,
13-
HasPreviousTxnID {
12+
extends BaseLedgerEntry, HasPreviousTxnID {
1413
LedgerEntryType: 'DepositPreauth'
1514
/** The account that granted the preauthorization. */
1615
Account: string

packages/xrpl/src/models/ledger/DirectoryNode.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { BaseLedgerEntry, HasOptionalPreviousTxnID } from './BaseLedgerEntry'
77
* @category Ledger Entries
88
*/
99
export default interface DirectoryNode
10-
extends BaseLedgerEntry,
11-
HasOptionalPreviousTxnID {
10+
extends BaseLedgerEntry, HasOptionalPreviousTxnID {
1211
LedgerEntryType: 'DirectoryNode'
1312
/**
1413
* A bit-map of boolean flags enabled for this directory. Currently, the

packages/xrpl/src/models/ledger/FeeSettings.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ export interface FeeSettingsPostAmendmentFields {
2727
}
2828

2929
export interface FeeSettingsBase
30-
extends BaseLedgerEntry,
31-
HasOptionalPreviousTxnID {
30+
extends BaseLedgerEntry, HasOptionalPreviousTxnID {
3231
LedgerEntryType: 'FeeSettings'
3332
/**
3433
* A bit-map of boolean flags for this object. No flags are defined for this type.

packages/xrpl/src/models/ledger/NegativeUNL.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ export const NEGATIVE_UNL_ID =
1313
* @category Ledger Entries
1414
*/
1515
export default interface NegativeUNL
16-
extends BaseLedgerEntry,
17-
HasOptionalPreviousTxnID {
16+
extends BaseLedgerEntry, HasOptionalPreviousTxnID {
1817
LedgerEntryType: 'NegativeUNL'
1918
/**
2019
* A list of trusted validators that are currently disabled.

packages/xrpl/src/models/ledger/PermissionedDomain.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import { AuthorizeCredential } from '../common'
33
import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'
44

55
export default interface PermissionedDomain
6-
extends BaseLedgerEntry,
7-
HasPreviousTxnID {
6+
extends BaseLedgerEntry, HasPreviousTxnID {
87
/* The ledger object's type (PermissionedDomain). */
98
LedgerEntryType: 'PermissionedDomain'
109

packages/xrpl/src/models/ledger/XChainOwnedClaimID.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'
1010
* @category Ledger Entries
1111
*/
1212
export default interface XChainOwnedClaimID
13-
extends BaseLedgerEntry,
14-
HasPreviousTxnID {
13+
extends BaseLedgerEntry, HasPreviousTxnID {
1514
LedgerEntryType: 'XChainOwnedClaimID'
1615

1716
/** The account that checked out this unique claim ID value. */

packages/xrpl/src/models/ledger/XChainOwnedCreateAccountClaimID.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import { BaseLedgerEntry, HasPreviousTxnID } from './BaseLedgerEntry'
99
* @category Ledger Entries
1010
*/
1111
export default interface XChainOwnedCreateAccountClaimID
12-
extends BaseLedgerEntry,
13-
HasPreviousTxnID {
12+
extends BaseLedgerEntry, HasPreviousTxnID {
1413
LedgerEntryType: 'XChainOwnedCreateAccountClaimID'
1514

1615
/** The account that owns this object. */

packages/xrpl/src/models/methods/accountChannels.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ export interface Channel {
8888
* @category Requests
8989
*/
9090
export interface AccountChannelsRequest
91-
extends BaseRequest,
92-
LookupByLedgerRequest {
91+
extends BaseRequest, LookupByLedgerRequest {
9392
command: 'account_channels'
9493
/**
9594
* The unique identifier of an account, typically the account's address. The

0 commit comments

Comments
 (0)