@@ -418,19 +418,19 @@ export class RushConfiguration {
418418 /**
419419 * The fully resolved path for the "common" folder where Rush will store settings that
420420 * affect all Rush projects. This is always a subfolder of the folder containing "rush.json".
421- * Example: " C:\MyRepo\common"
421+ * Example: ` C:\MyRepo\common`
422422 */
423423 public get commonFolder ( ) : string {
424424 return this . _commonFolder ;
425425 }
426426
427427 /**
428428 * The folder where Rush's additional config files are stored. This folder is always a
429- * subfolder called " config\rush" inside the common folder. (The " common\config" folder
429+ * subfolder called ` config\rush` inside the common folder. (The ` common\config` folder
430430 * is reserved for configuration files used by other tools.) To avoid confusion or mistakes,
431431 * Rush will report an error if this this folder contains any unrecognized files.
432432 *
433- * Example: " C:\MyRepo\common\config\rush"
433+ * Example: ` C:\MyRepo\common\config\rush`
434434 */
435435 public get commonRushConfigFolder ( ) : string {
436436 return this . _commonRushConfigFolder ;
@@ -439,7 +439,7 @@ export class RushConfiguration {
439439 /**
440440 * The folder where temporary files will be stored. This is always a subfolder called "temp"
441441 * under the common folder.
442- * Example: " C:\MyRepo\common\temp"
442+ * Example: ` C:\MyRepo\common\temp`
443443 */
444444 public get commonTempFolder ( ) : string {
445445 return this . _commonTempFolder ;
@@ -448,7 +448,7 @@ export class RushConfiguration {
448448 /**
449449 * The folder where automation scripts are stored. This is always a subfolder called "scripts"
450450 * under the common folder.
451- * Example: " C:\MyRepo\common\scripts"
451+ * Example: ` C:\MyRepo\common\scripts`
452452 */
453453 public get commonScriptsFolder ( ) : string {
454454 return this . _commonScriptsFolder ;
@@ -460,7 +460,7 @@ export class RushConfiguration {
460460 * reliably handle multiple processes. (For example, if a build box is running
461461 * "rush install" simultaneously for two different working folders, it may fail randomly.)
462462 *
463- * Example: " C:\MyRepo\common\temp\npm-cache"
463+ * Example: ` C:\MyRepo\common\temp\npm-cache`
464464 */
465465 public get npmCacheFolder ( ) : string {
466466 return this . _npmCacheFolder ;
@@ -471,7 +471,7 @@ export class RushConfiguration {
471471 * Rush does not rely on the global default folder, because it may be on a different
472472 * hard disk.
473473 *
474- * Example: " C:\MyRepo\common\temp\npm-tmp"
474+ * Example: ` C:\MyRepo\common\temp\npm-tmp`
475475 */
476476 public get npmTmpFolder ( ) : string {
477477 return this . _npmTmpFolder ;
@@ -480,7 +480,7 @@ export class RushConfiguration {
480480 /**
481481 * The local folder where PNPM stores a global installation for every installed package
482482 *
483- * Example: " C:\MyRepo\common\temp\pnpm-store"
483+ * Example: ` C:\MyRepo\common\temp\pnpm-store`
484484 */
485485 public get pnpmStoreFolder ( ) : string {
486486 return this . _pnpmStoreFolder ;
@@ -489,7 +489,7 @@ export class RushConfiguration {
489489 /**
490490 * The local folder that will store the Yarn package cache.
491491 *
492- * Example: " C:\MyRepo\common\temp\yarn-cache"
492+ * Example: ` C:\MyRepo\common\temp\yarn-cache`
493493 */
494494 public get yarnCacheFolder ( ) : string {
495495 return this . _yarnCacheFolder ;
@@ -500,7 +500,7 @@ export class RushConfiguration {
500500 * command uses a temporary copy, whose path is tempShrinkwrapFilename.)
501501 * @remarks
502502 * This property merely reports the filename; the file itself may not actually exist.
503- * Example: " C:\MyRepo\common\npm-shrinkwrap.json" or " C:\MyRepo\common\shrinkwrap.yaml"
503+ * Example: ` C:\MyRepo\common\npm-shrinkwrap.json` or ` C:\MyRepo\common\shrinkwrap.yaml`
504504 */
505505 public get committedShrinkwrapFilename ( ) : string {
506506 return this . _committedShrinkwrapFilename ;
@@ -511,7 +511,7 @@ export class RushConfiguration {
511511 * This file may get rewritten by the package manager during installation.
512512 * @remarks
513513 * This property merely reports the filename; the file itself may not actually exist.
514- * Example: " C:\MyRepo\common\temp\npm-shrinkwrap.json" or " C:\MyRepo\common\temp\shrinkwrap.yaml"
514+ * Example: ` C:\MyRepo\common\temp\npm-shrinkwrap.json` or ` C:\MyRepo\common\temp\shrinkwrap.yaml`
515515 */
516516 public get tempShrinkwrapFilename ( ) : string {
517517 return this . _tempShrinkwrapFilename ;
@@ -523,8 +523,8 @@ export class RushConfiguration {
523523 * modified tempShrinkwrapFilename.
524524 * @remarks
525525 * This property merely reports the filename; the file itself may not actually exist.
526- * Example: " C:\MyRepo\common\temp\npm-shrinkwrap-preinstall.json"
527- * or " C:\MyRepo\common\temp\shrinkwrap-preinstall.yaml"
526+ * Example: ` C:\MyRepo\common\temp\npm-shrinkwrap-preinstall.json`
527+ * or ` C:\MyRepo\common\temp\shrinkwrap-preinstall.yaml`
528528 */
529529 public get tempShrinkwrapPreinstallFilename ( ) : string {
530530 return this . _tempShrinkwrapPreinstallFilename ;
@@ -547,7 +547,7 @@ export class RushConfiguration {
547547
548548 /**
549549 * The absolute path to Rush's storage in the home directory for the current user. On Windows,
550- * it would be something like " C:\Users\YourName\.rush" .
550+ * it would be something like ` C:\Users\YourName\.rush` .
551551 */
552552 public get rushUserFolder ( ) : string {
553553 return this . _rushUserFolder ;
@@ -558,7 +558,7 @@ export class RushConfiguration {
558558 * called 'rush-link.json' resides in the Rush common folder.
559559 * Its data structure is defined by IRushLinkJson.
560560 *
561- * Example: " C:\MyRepo\common\temp\rush-link.json"
561+ * Example: ` C:\MyRepo\common\temp\rush-link.json`
562562 */
563563 public get rushLinkJsonFilename ( ) : string {
564564 return this . _rushLinkJsonFilename ;
@@ -574,7 +574,7 @@ export class RushConfiguration {
574574 /**
575575 * The absolute path to the locally installed NPM tool. If "rush install" has not
576576 * been run, then this file may not exist yet.
577- * Example: " C:\MyRepo\common\temp\npm-local\node_modules\.bin\npm"
577+ * Example: ` C:\MyRepo\common\temp\npm-local\node_modules\.bin\npm`
578578 */
579579 public get packageManagerToolFilename ( ) : string {
580580 return this . _packageManagerToolFilename ;
@@ -611,7 +611,7 @@ export class RushConfiguration {
611611 * [Part of the "gitPolicy" feature.]
612612 * A list of regular expressions describing allowable email patterns for Git commits.
613613 * They are case-insensitive anchored JavaScript RegExps.
614- * Example: ".*@example \.com"
614+ * Example: ` ".*@example \.com"`
615615 * This array will never be undefined.
616616 */
617617 public get gitAllowedEmailRegExps ( ) : string [ ] {
@@ -621,7 +621,7 @@ export class RushConfiguration {
621621 /**
622622 * [Part of the "gitPolicy" feature.]
623623 * An example valid email address that conforms to one of the allowedEmailRegExps.
624- * Example: "foxtrot@example\.com"
624+ * Example: ` "foxtrot@example\.com"`
625625 * This will never be undefined, and will always be nonempty if gitAllowedEmailRegExps is used.
626626 */
627627 public get gitSampleEmail ( ) : string {
@@ -704,7 +704,7 @@ export class RushConfiguration {
704704 /**
705705 * This is used e.g. by command-line interfaces such as "rush build --to example".
706706 * If "example" is not a project name, then it also looks for a scoped name
707- * like " @something/example" . If exactly one project matches this heuristic, it
707+ * like ` @something/example` . If exactly one project matches this heuristic, it
708708 * is returned. Otherwise, undefined is returned.
709709 */
710710 public findProjectByShorthandName ( shorthandProjectName : string ) : RushConfigurationProject | undefined {
0 commit comments