From 74d9d464b138990b817f725e8b8c4dd636d5dc8c Mon Sep 17 00:00:00 2001 From: yann300 Date: Wed, 17 Apr 2024 15:54:11 +0200 Subject: [PATCH] linting --- .../create2-solidity-factory/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/remix-ws-templates/src/script-templates/create2-solidity-factory/index.ts b/libs/remix-ws-templates/src/script-templates/create2-solidity-factory/index.ts index c492142ea9..4d7bedb2d8 100644 --- a/libs/remix-ws-templates/src/script-templates/create2-solidity-factory/index.ts +++ b/libs/remix-ws-templates/src/script-templates/create2-solidity-factory/index.ts @@ -1,8 +1,8 @@ export const contractCreate2Factory = async (plugin) => { - await plugin.call('fileManager', 'writeFile', - 'contracts/libs/create2-factory.sol' , - // @ts-ignore - (await import('!!raw-loader!./create2-factory.sol')).default) - - await plugin.call('fileManager', 'open', 'contracts/libs/create2-factory.sol') - } \ No newline at end of file + await plugin.call('fileManager', 'writeFile', + 'contracts/libs/create2-factory.sol' , + // @ts-ignore + (await import('!!raw-loader!./create2-factory.sol')).default) + + await plugin.call('fileManager', 'open', 'contracts/libs/create2-factory.sol') +}