diff --git a/packages/xrpl/.eslintrc.js b/packages/xrpl/.eslintrc.js index 2321616dfa..ea20cd1e79 100644 --- a/packages/xrpl/.eslintrc.js +++ b/packages/xrpl/.eslintrc.js @@ -107,6 +107,7 @@ module.exports = { '@typescript-eslint/no-unsafe-assignment': 'off', '@typescript-eslint/no-unsafe-call': 'off', '@typescript-eslint/consistent-type-assertions': 'off', + '@typescript-eslint/no-unsafe-return': 'off', // We need to mess with internal things to generate certain testing situations '@typescript-eslint/no-unsafe-member-access': 'off', diff --git a/packages/xrpl/test/models/accountSet.test.ts b/packages/xrpl/test/models/accountSet.test.ts index cc70f4c644..2679177382 100644 --- a/packages/xrpl/test/models/accountSet.test.ts +++ b/packages/xrpl/test/models/accountSet.test.ts @@ -1,5 +1,4 @@ import { validateAccountSet } from '../../src/models/transactions/accountSet' -import { isNumberWithBounds } from '../../src/models/transactions/common' import { assertTxIsValid, assertTxValidationError } from '../testUtils' const assertValid = (tx: any): void => assertTxIsValid(tx, validateAccountSet)