Skip to content

Commit

Permalink
chore(ios): fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Almouro committed Sep 5, 2024
1 parent 293379a commit b1e6dea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/platforms/ios-instruments/src/XcodePerfParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export const computeMeasures = (inputFileName: string) => {
ignoreAttributes: false,
parseAttributeValue: true,
textNodeName: "value",
// eslint-disable-next-line @typescript-eslint/no-unused-vars
updateTag(tagName: string, jPath: string, attrs: { [x: string]: string | number }) {
switch (tagName) {
case "trace-query-result": {
Expand Down
2 changes: 1 addition & 1 deletion packages/platforms/ios-instruments/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class IOSInstrumentsProfiler implements Profiler {
// Do we need anything here?
}

getScreenRecorder(videoPath: string): ScreenRecorder | undefined {
getScreenRecorder(): ScreenRecorder | undefined {
return undefined;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/platforms/ios/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class IOSProfiler implements Profiler {
return new Promise<void>((resolve) => resolve());
}

async waitUntilReady(bundleId: string): Promise<void> {
async waitUntilReady(): Promise<void> {
return new Promise<void>((resolve) => resolve());
}

Expand Down

0 comments on commit b1e6dea

Please sign in to comment.