Skip to content

Commit e13e83a

Browse files
authored
style: fix lint issues (#1020)
<!-- CURSOR_SUMMARY --> > [!NOTE] > Reformats multi-line extends/implements clauses across interfaces/classes for lint compliance; no functional changes. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit d50efdd. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 86a4e53 commit e13e83a

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

packages/sdk/browser/src/compat/LDClientCompat.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ import { LDClient as LDCLientBrowser } from '../LDClient';
1212
* incorrect. Any function which optionally returned a promise based on a callback had incorrect
1313
* typings. Those have been corrected in this implementation.
1414
*/
15-
export interface LDClient
16-
extends Omit<LDCLientBrowser, 'close' | 'flush' | 'identify' | 'identifyResult'> {
15+
export interface LDClient extends Omit<
16+
LDCLientBrowser,
17+
'close' | 'flush' | 'identify' | 'identifyResult'
18+
> {
1719
/**
1820
* Identifies a context to LaunchDarkly.
1921
*

packages/shared/sdk-server/src/Migration.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,12 @@ class Migration<
9696
TMigrationWrite,
9797
TMigrationReadInput = any,
9898
TMigrationWriteInput = any,
99-
> implements LDMigration<TMigrationRead, TMigrationWrite, TMigrationReadInput, TMigrationWriteInput>
100-
{
99+
> implements LDMigration<
100+
TMigrationRead,
101+
TMigrationWrite,
102+
TMigrationReadInput,
103+
TMigrationWriteInput
104+
> {
101105
private readonly _execution: LDSerialExecution | LDConcurrentExecution;
102106

103107
private readonly _errorTracking: boolean;

packages/shared/sdk-server/src/api/options/LDDataSystemOptions.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ export interface PollingDataSourceConfiguration {
122122
* and can switch between streaming and polling automatically to provide redundancy.
123123
*/
124124
export interface StandardDataSourceOptions
125-
extends Omit<StreamingDataSourceConfiguration, 'type'>,
125+
extends
126+
Omit<StreamingDataSourceConfiguration, 'type'>,
126127
Omit<PollingDataSourceConfiguration, 'type'> {
127128
dataSourceOptionsType: 'standard';
128129
}

0 commit comments

Comments
 (0)