Skip to content

Commit d0d2fec

Browse files
committed
linting & formatting
1 parent c41bc76 commit d0d2fec

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/client/src/envconfig.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -287,14 +287,14 @@ export interface LoadClientProfileOptions {
287287
* // Load the default profile from environment and default config locations
288288
* const profile = ClientConfigProfile.load();
289289
* const { connectionOptions, namespace } = profile.toClientConnectConfig();
290-
*
290+
*
291291
* // Load a specific profile with custom config source
292292
* const customProfile = ClientConfigProfile.load({
293293
* profile: 'production',
294294
* configSource: { path: '/path/to/config.toml' }
295295
* });
296296
* ```
297-
*
297+
*
298298
* @experimental
299299
*/
300300
export class ClientConfigProfile {
@@ -362,7 +362,7 @@ export class ClientConfigProfile {
362362
* ```ts
363363
* const profile = ClientConfigProfile.load({ profile: 'production' });
364364
* const { connectionOptions, namespace } = profile.toClientConnectConfig();
365-
*
365+
*
366366
* const connection = await Connection.connect(connectionOptions);
367367
* const client = new Client({ connection, namespace });
368368
* ```
@@ -425,7 +425,7 @@ interface ClientConfigJSON {
425425
* address, authentication, TLS, and other connection parameters.
426426
*
427427
* The configuration supports:
428-
* - Loading from TOML configuration files
428+
* - Loading from TOML configuration files
429429
* - Environment variable-based profile discovery via `TEMPORAL_CONFIG_FILE`
430430
* - Multiple named profiles within a single configuration
431431
* - JSON serialization for configuration persistence
@@ -437,19 +437,19 @@ interface ClientConfigJSON {
437437
* ```ts
438438
* // Load all profiles from default config locations
439439
* const config = ClientConfig.load();
440-
*
440+
*
441441
* // Access a specific profile
442442
* const prodProfile = config.profiles['production'];
443443
* if (prodProfile) {
444444
* const { connectionOptions, namespace } = prodProfile.toClientConnectConfig();
445445
* }
446-
*
446+
*
447447
* // Load from a specific TOML file with strict validation
448448
* const strictConfig = ClientConfig.load({
449449
* configSource: { path: './temporal-config.toml' },
450450
* configFileStrict: true
451451
* });
452-
*
452+
*
453453
* // Convenience method to load a single profile directly
454454
* const connectConfig = ClientConfig.loadClientConnectConfig({
455455
* profile: 'development'

0 commit comments

Comments
 (0)