You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(container-runtime): Enable eslint rules from recommended config and fix violations (#23564)
Adds the `jsdoc`-related rules from the recommended config and fixes
violations. Specifically,
- `jsdoc/multiline-blocks`
- `jsdoc/require-description`,
This PR is one piece of a multi-PR process to migrate the
`container-runtime` package to our recommended eslint config.
[AB#3027](https://dev.azure.com/fluidframework/235294da-091d-4c29-84fc-cdfc3d90890b/_workitems/edit/3027)
/** The default time to wait for pending ops to be processed during summarization */
670
+
/**
671
+
* The default time to wait for pending ops to be processed during summarization
672
+
*/
667
673
exportconstdefaultPendingOpsWaitTimeoutMs=1000;
668
-
/** The default time to delay a summarization retry attempt when there are pending ops */
674
+
/**
675
+
* The default time to delay a summarization retry attempt when there are pending ops
676
+
*/
669
677
exportconstdefaultPendingOpsRetryDelayMs=1000;
670
678
671
679
/**
@@ -890,7 +898,9 @@ export class ContainerRuntime
890
898
runtimeOptions?: IContainerRuntimeOptions;// May also include options from IContainerRuntimeOptionsInternal
891
899
containerScope?: FluidObject;
892
900
containerRuntimeCtor?: typeofContainerRuntime;
893
-
/** @deprecated Will be removed once Loader LTS version is "2.0.0-internal.7.0.0". Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md */
901
+
/**
902
+
* @deprecated Will be removed once Loader LTS version is "2.0.0-internal.7.0.0". Migrate all usage of IFluidRouter to the "entryPoint" pattern. Refer to Removing-IFluidRouter.md
0 commit comments