From 744ca613fb9a09b2b7ef30a846939fbfb1cdb41a Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Wed, 2 Oct 2024 15:50:09 +0100 Subject: [PATCH] chore: disable import extensions lint on JSX imports --- upload-api/functions/validate-email.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/upload-api/functions/validate-email.jsx b/upload-api/functions/validate-email.jsx index 2e8b8780..4fd0525b 100644 --- a/upload-api/functions/validate-email.jsx +++ b/upload-api/functions/validate-email.jsx @@ -13,8 +13,10 @@ import { createConsumerTable } from '../tables/consumer.js' import { createRevocationsTable } from '../stores/revocations.js' import * as AgentStore from '../stores/agent.js' import { useProvisionStore } from '../stores/provisions.js' -import * as htmlStoracha from '../html-storacha/index.js' -import * as htmlW3s from '../html-w3s/index.js' +// eslint-disable-next-line import/extensions +import * as htmlStoracha from '../html-storacha' +// eslint-disable-next-line import/extensions +import * as htmlW3s from '../html-w3s' import { createRateLimitTable } from '../tables/rate-limit.js' import { createSpaceMetricsTable } from '../tables/space-metrics.js' import { createCustomerStore } from '@web3-storage/w3infra-billing/tables/customer'