mirror of
https://github.com/tiktok/sparo.git
synced 2024-12-03 20:31:13 -05:00
28 lines
993 B
JSON
28 lines
993 B
JSON
|
/**
|
||
|
* This configuration file allows repo maintainers to configure extra details to be
|
||
|
* printed alongside certain Rush messages. More documentation is available on the
|
||
|
* Rush website: https://rushjs.io
|
||
|
*/
|
||
|
{
|
||
|
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/custom-tips.schema.json",
|
||
|
|
||
|
/**
|
||
|
* Specifies the custom tips to be displayed by Rush.
|
||
|
*/
|
||
|
"customTips": [
|
||
|
// {
|
||
|
// /**
|
||
|
// * (REQUIRED) An identifier indicating a message that may be printed by Rush.
|
||
|
// * If that message is printed, then this custom tip will be shown.
|
||
|
// * Consult the Rush documentation for the current list of possible identifiers.
|
||
|
// */
|
||
|
// "tipId": "TIP_RUSH_INCONSISTENT_VERSIONS",
|
||
|
//
|
||
|
// /**
|
||
|
// * (REQUIRED) The message text to be displayed for this tip.
|
||
|
// */
|
||
|
// "message": "For additional troubleshooting information, refer this wiki article:\n\nhttps://intranet.contoso.com/docs/pnpm-mismatch"
|
||
|
// }
|
||
|
]
|
||
|
}
|