From 99d81c71e6d74dfcf98d5ebfd268dd300885fe4b Mon Sep 17 00:00:00 2001 From: Ty Rauber Date: Tue, 24 Sep 2024 09:08:54 +0200 Subject: [PATCH] fix: lint errors --- plugin/src/withMapLibre.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/src/withMapLibre.ts b/plugin/src/withMapLibre.ts index 04169d645..b98b49be0 100644 --- a/plugin/src/withMapLibre.ts +++ b/plugin/src/withMapLibre.ts @@ -43,7 +43,7 @@ const withCocoaPodsInstallerBlocks: ConfigPlugin = (c) => { await promises.writeFile( file, applyCocoaPodsModifications(contents), - "utf-8" + "utf-8", ); return config; }, @@ -63,7 +63,7 @@ export function applyCocoaPodsModifications(contents: string): string { export function addInstallerBlock( src: string, - blockName: InstallerBlockName + blockName: InstallerBlockName, ): string { const matchBlock = new RegExp(`${blockName}_install do \\|installer\\|`); const tag = `${blockName}_installer`; @@ -96,7 +96,7 @@ export function addInstallerBlock( export function addMapLibreInstallerBlock( src: string, - blockName: InstallerBlockName + blockName: InstallerBlockName, ): string { return mergeContents({ tag: `@maplibre/maplibre-react-native-${blockName}_installer`, @@ -144,7 +144,7 @@ const withoutSignatures: ConfigPlugin = (config) => { { shellPath: "/bin/sh", shellScript, - } + }, ); return config; });