/** * 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", /** * Custom tips allow you to annotate Rush's console messages with advice tailored for * your specific monorepo. */ "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. // * The list of available tip identifiers can be found on this page: // * https://rushjs.io/pages/maintainer/custom_tips/ // */ // "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" // } ] }