From dd1783f984cd87abe4407defc77f117fe6f5a1d6 Mon Sep 17 00:00:00 2001 From: woxtu Date: Thu, 17 Aug 2023 21:20:58 +0900 Subject: chore(backend): Resolve `import/no-default-export` rule violations (#11732) * Disable `import/no-default-export` properly * Disable `import/no-default-export` --- packages/backend/src/misc/is-native-token.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'packages/backend/src/misc/is-native-token.ts') diff --git a/packages/backend/src/misc/is-native-token.ts b/packages/backend/src/misc/is-native-token.ts index 3046e72a34..618e60b7d8 100644 --- a/packages/backend/src/misc/is-native-token.ts +++ b/packages/backend/src/misc/is-native-token.ts @@ -3,4 +3,5 @@ * SPDX-License-Identifier: AGPL-3.0-only */ +// eslint-disable-next-line import/no-default-export export default (token: string) => token.length === 16; -- cgit v1.2.3-freya