Skip to content

Commit

Permalink
style: comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Nov 1, 2023
1 parent f347144 commit f2da0f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/shared/remoteSourceTrackingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { getMetadataKeyFromFileResponse, mappingsForSourceMemberTypesToMetadataT
import { getMetadataKey } from './functions';
import { calculateExpectedSourceMembers } from './expectedSourceMembers';

// represents the contents of the config file stored in 'maxRevision.json'
/** represents the contents of the config file stored in 'maxRevision.json' */
type Contents = {
serverMaxRevisionCounter: number;
sourceMembers: Record<string, MemberRevision>;
Expand All @@ -29,7 +29,8 @@ const FILENAME = 'maxRevision.json';
const POLLING_DELAY_MS = 1000;
const CONSECUTIVE_EMPTY_POLLING_RESULT_LIMIT =
(env.getNumber('SFDX_SOURCE_MEMBER_POLLING_TIMEOUT') ?? 120) / Duration.milliseconds(POLLING_DELAY_MS).seconds;
// Constructor Options for RemoteSourceTrackingService.

/** Options for RemoteSourceTrackingService.getInstance */
export interface RemoteSourceTrackingServiceOptions {
org: Org;
projectPath: string;
Expand Down
2 changes: 0 additions & 2 deletions test/unit/remoteSourceTracking.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
/* eslint-disable @typescript-eslint/await-thenable */
/* eslint-disable @typescript-eslint/ban-ts-comment */
/* eslint-disable camelcase */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */

import { sep } from 'node:path';
import { MockTestOrgData, instantiateContext, stubContext, restoreContext } from '@salesforce/core/lib/testSetup';
Expand Down

0 comments on commit f2da0f4

Please sign in to comment.