Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: disable promise/always-return eslint rule #1339

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ module.exports = {
'no-unused-expressions': 'off',
'no-unused-vars': 0,
'no-useless-constructor': 0,
'promise/always-return': 0,
'promise/avoid-new': 0,
quotes: ['error', 'single', { avoidEscape: true }],
'sort-imports': ['warn', { ignoreDeclarationSort: true }],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ export class MultiSigWallet {
new Observable<Cardano.Utxo[]>((subscriber) => {
this.#utxoProvider
.utxoByAddresses({ addresses: [this.#address.address] })
// eslint-disable-next-line promise/always-return
.then((utxos) => {
subscriber.next(utxos);
})
Expand Down Expand Up @@ -293,7 +292,6 @@ export class MultiSigWallet {
startAt: 0
}
})
// eslint-disable-next-line promise/always-return
.then((paginatedTxs) => {
subscriber.next(paginatedTxs.pageResults);
subscriber.complete();
Expand All @@ -318,7 +316,6 @@ export class MultiSigWallet {
.rewardsHistory({
rewardAccounts: [this.#address.rewardAccount]
})
// eslint-disable-next-line promise/always-return
.then((rewardsHistory) => {
subscriber.next(rewardsHistory);
subscriber.complete();
Expand All @@ -343,7 +340,6 @@ export class MultiSigWallet {
.rewardAccountBalance({
rewardAccount: this.#address.rewardAccount
})
// eslint-disable-next-line promise/always-return
.then((rewardAccountBalance) => {
subscriber.next(rewardAccountBalance);
subscriber.complete();
Expand Down
1 change: 0 additions & 1 deletion packages/e2e/test/projection/single-tenant-utxo.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable promise/always-return */
import * as Postgres from '@cardano-sdk/projection-typeorm';
import { Bootstrap, Mappers, ProjectionEvent, requestNext } from '@cardano-sdk/projection';
import { Cardano, ObservableCardanoNode } from '@cardano-sdk/core';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ const getScriptUtxoSet = (
new Observable<Cardano.Utxo[]>((subscriber) => {
utxoProvider
.utxoByAddresses({ addresses: [scriptAddress] })
// eslint-disable-next-line promise/always-return
.then((utxos) => {
subscriber.next(utxos);
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,8 @@ export class OgmiosObservableCardanoNode implements ObservableCardanoNode {
switchMap(
(interactionContext) =>
new Observable<ObservableChainSync>((subscriber) => {
// eslint-disable-next-line promise/always-return
if (subscriber.closed) return;
void ChainSynchronization.findIntersection(interactionContext, points.map(pointOrOriginToOgmios))
// eslint-disable-next-line promise/always-return
.then((ogmiosIntersection) => {
const intersection = ogmiosToCoreIntersection(ogmiosIntersection);
subscriber.next({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable promise/always-return */
import { CollectionStore } from '../types';
import { EMPTY, Observable, Subject, from } from 'rxjs';
import { Logger } from 'ts-log';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable promise/always-return */
import { DocumentStore } from '../types';
import { EMPTY, Observable } from 'rxjs';
import { Logger } from 'ts-log';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable promise/always-return */
import { EMPTY, Observable, from } from 'rxjs';
import { KeyValueCollection, KeyValueStore } from '../types';
import { Logger } from 'ts-log';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ export abstract class PouchDbStore<T extends {}> {
_rev: await this.#getRev(docId),
...serializableDoc
};
// eslint-disable-next-line promise/always-return
try {
await this.db.put(pouchDbDoc, { force: true });
} catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/test/PersonalWallet/methods.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable unicorn/consistent-destructuring, sonarjs/no-duplicate-string, @typescript-eslint/no-floating-promises, promise/no-nesting, promise/always-return */
/* eslint-disable unicorn/consistent-destructuring, sonarjs/no-duplicate-string, @typescript-eslint/no-floating-promises, promise/no-nesting */
import * as Crypto from '@cardano-sdk/crypto';
import { AddressDiscovery, BaseWallet, TxInFlight, createPersonalWallet } from '../../src';
import { AddressType, Bip32Account, GroupedAddress, Witnesser, util } from '@cardano-sdk/key-management';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,6 @@ describe('remoteApi integration', () => {
return !consumerMessage$.observed && !hostMessage$.observed;
};
// Create and consume a new remote api through another API's factory method
// eslint-disable-next-line promise/always-return
void Promise.resolve(getFactory(sut.consumer)()).then(() => {
expect(destructor.callbacks).toHaveLength(1);
setTimeout(() => {
Expand Down
Loading