Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrauber committed Sep 24, 2024
1 parent 4139fc2 commit 99d81c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugin/src/withMapLibre.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const withCocoaPodsInstallerBlocks: ConfigPlugin = (c) => {
await promises.writeFile(
file,
applyCocoaPodsModifications(contents),
"utf-8"
"utf-8",
);
return config;
},
Expand All @@ -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`;
Expand Down Expand Up @@ -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`,
Expand Down Expand Up @@ -144,7 +144,7 @@ const withoutSignatures: ConfigPlugin = (config) => {
{
shellPath: "/bin/sh",
shellScript,
}
},
);
return config;
});
Expand Down

0 comments on commit 99d81c7

Please sign in to comment.