From 5d74b1f5f8bd1ea904db26fad9d0adf454d683f6 Mon Sep 17 00:00:00 2001 From: Jaepil Kim Date: Wed, 23 Jun 2021 13:21:07 +1000 Subject: [PATCH] fix: fixed linting --- lib/commands/import-export/make-export.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/commands/import-export/make-export.js b/lib/commands/import-export/make-export.js index def1c70..fd5cf13 100644 --- a/lib/commands/import-export/make-export.js +++ b/lib/commands/import-export/make-export.js @@ -31,8 +31,8 @@ const makeExport = ({ settingsService, parameterStore }) => async ( filePath, target === 'env' ? `${Object.entries({ ...configs, ...secrets }) - .map(([key, val]) => `${key.replace(/[^A-Za-z0-9]+/g, '_')}="${val}"`) - .join('\n')}\n` + .map(([key, val]) => `${key.replace(/[^A-Za-z0-9]+/g, '_')}="${val}"`) + .join('\n')}\n` : JSON.stringify({ configs, secrets }, null, 2) ); };