From 9bcd56923d48eafca46f595fbd4f0df013e16865 Mon Sep 17 00:00:00 2001 From: Mentor Date: Fri, 10 Jun 2022 11:00:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20remove=20lint=20on=20deploy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- firebase.json | 5 ----- functions/integrations/changingroom.js | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/firebase.json b/firebase.json index 5f34f85..d7fffb7 100644 --- a/firebase.json +++ b/firebase.json @@ -3,11 +3,6 @@ "rules": "firestore.rules", "indexes": "firestore.indexes.json" }, - "functions": { - "predeploy": [ - "npm --prefix \"$RESOURCE_DIR\" run lint" - ] - }, "hosting": [ { "target": "website", diff --git a/functions/integrations/changingroom.js b/functions/integrations/changingroom.js index d0a0650..64cf496 100644 --- a/functions/integrations/changingroom.js +++ b/functions/integrations/changingroom.js @@ -1,5 +1,5 @@ const { generateNewOutfitFromId, queueRocketeersOfAddressForOutfitChange } = require( '../nft-media/changing-room' ) -const { db, dataFromSnap, FieldPath } = require( '../modules/firebase' ) +const { db, dataFromSnap } = require( '../modules/firebase' ) const { dev, log } = require( '../modules/helpers' ) const { ask_signer_is_for_available_emails } = require( './signer_is' ) const { send_outfit_available_email } = require( './ses' )